be.SIRAPRISE.client
Class ConstructorMissingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by be.SIRAPRISE.client.ConstructorMissingException
All Implemented Interfaces:
java.io.Serializable

public class ConstructorMissingException
extends java.lang.Exception

A ConstructorMissingException indicates that a Class object was passed as an argument to one of the JSBA's toObject(), toObjects(), toObjectCollection() or toObjectsCollection() methods, but that Class does not have the required public no-arg constructor

Author:
Erwin Smout
See Also:
Serialized Form

Constructor Summary
ConstructorMissingException()
          Creates the exception
ConstructorMissingException(java.lang.NoSuchMethodException e)
          Creates the exception, setting the given exception as its cause
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConstructorMissingException

public ConstructorMissingException(java.lang.NoSuchMethodException e)
Creates the exception, setting the given exception as its cause

Parameters:
e - The exception causing this exception to be thrown

ConstructorMissingException

public ConstructorMissingException()
Creates the exception