public class ClassNotFoundException extends TypeError:
Exception raised when the compiler or runtime class loader cannot resolve a requested class.
@param message Description of the missing class.
try:
eval("import not.existing.Package")
catch exc as ClassNotFoundException:
println(exc.message)| Modifier and Type | Member | Description |
|---|---|---|
| public | ClassNotFoundExceptionClassNotFoundException(message as String = "Class not found"): |
Creates a class-not-found exception. |