Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

recoin.exception
Class ClassLoadingException  view ClassLoadingException download ClassLoadingException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byrecoin.exception.RECOINException
              extended byrecoin.exception.ClassLoadingException
All Implemented Interfaces:
java.io.Serializable

public class ClassLoadingException
extends RECOINException

A ClassLoadingException can be thrown whenever a Class is supposed to be loaded and instantiated dynamically with the help of its classname.

Because this mechanism covers several steps, a ClassLoadingException represents different exceptions that can occur during the process, e.g. an InstantiationException or a ClassNotFoundException.

Version:
0.2.9

Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
 
Fields inherited from class recoin.exception.RECOINException
myMessage
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
ClassLoadingException()
          Creates a new ClassLoadingException
ClassLoadingException(java.lang.String msg)
          Creates a new ClassLoadingException with the specified message.
ClassLoadingException(java.lang.String msg, java.lang.Exception e)
          Creates a new ClassLoadingException with the specified original exception and the specified message.
 
Methods inherited from class recoin.exception.RECOINException
getMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ClassLoadingException

public ClassLoadingException()
Creates a new ClassLoadingException


ClassLoadingException

public ClassLoadingException(java.lang.String msg)
Creates a new ClassLoadingException with the specified message.


ClassLoadingException

public ClassLoadingException(java.lang.String msg,
                             java.lang.Exception e)
Creates a new ClassLoadingException with the specified original exception and the specified message.