Class JavaClass::Classpath::ClassNotFoundError
In: lib/javaclass/classpath/class_not_found_error.rb
Parent: IOError

An error in the classpath. The requested classfile could not be found.

Author:Peter Kofler

Methods

new  

Attributes

classname  [R] 
classpath  [R] 

Public Class methods

[Source]

# File lib/javaclass/classpath/class_not_found_error.rb, line 11
      def initialize(classname, classpath=nil)
        @classname = classname
        @classpath = classpath
        super("class #{@classname} not found in classpath #{@classpath}")
      end

[Validate]