de.bsvrz.kex.bwsin.konfig.okstra
Class IllegalAttributeConversionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by de.bsvrz.kex.bwsin.konfig.okstra.IllegalAttributeConversionException
All Implemented Interfaces:
Serializable

public class IllegalAttributeConversionException
extends Exception

Exception für Ausnahmen bei der Konvertierung von Feature-Attributen.

Version:
$Id: IllegalAttributeConversionException.java 10401 2008-07-10 09:06:04Z gieseler $
Author:
BitCtrl Systems GmbH, Gieseler
See Also:
Serialized Form

Constructor Summary
IllegalAttributeConversionException(Class<?> expected, Object invalid)
          Constructor that makes the message given the expected and invalid.
IllegalAttributeConversionException(Class<?> expected, Object invalid, Throwable cause)
          Constructor that makes the message given the expected and invalid, along with the root cause.
IllegalAttributeConversionException(String message)
          Constructor with message argument.
 
Method Summary
 String toString()
          
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IllegalAttributeConversionException

public IllegalAttributeConversionException(Class<?> expected,
                                           Object invalid)
Constructor that makes the message given the expected and invalid.

Parameters:
expected - the expected AttributeType.
invalid - the attribute that does not validate against expected.

IllegalAttributeConversionException

public IllegalAttributeConversionException(Class<?> expected,
                                           Object invalid,
                                           Throwable cause)
Constructor that makes the message given the expected and invalid, along with the root cause.

Parameters:
expected - the expected AttributeType.
invalid - the attribute that does not validate against expected.
cause - the root cause of the error.

IllegalAttributeConversionException

public IllegalAttributeConversionException(String message)
Constructor with message argument.

Parameters:
message - Reason for the exception being thrown
Method Detail

toString

public String toString()

Overrides:
toString in class Throwable
See Also:
Throwable.toString()