org.rblasch.convert
Class ConversionException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.rblasch.convert.AbstractRuntimeException
                  extended byorg.rblasch.convert.ConversionException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ConversionFailedException, NoSuchConversionException

public class ConversionException
extends AbstractRuntimeException

Author:
Ronald Blaschke
See Also:
Serialized Form

Constructor Summary
ConversionException()
          Constructs a new throwable with null as its detail message.
ConversionException(java.lang.String message)
          Construct a new exception with the specified message.
ConversionException(java.lang.String message, java.lang.Throwable cause)
          Construct a new exception with the specified message and root cause.
ConversionException(java.lang.Throwable cause)
          Construct a new exception with the specified root cause.
 
Methods inherited from class org.rblasch.convert.AbstractRuntimeException
getCause, initCause, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConversionException

public ConversionException()
Constructs a new throwable with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to AbstractRuntimeException.initCause(java.lang.Throwable).


ConversionException

public ConversionException(java.lang.String message)
Construct a new exception with the specified message.

Parameters:
message - The message describing this exception

ConversionException

public ConversionException(java.lang.Throwable cause)
Construct a new exception with the specified root cause.

Parameters:
cause - The root cause of this exception

ConversionException

public ConversionException(java.lang.String message,
                           java.lang.Throwable cause)
Construct a new exception with the specified message and root cause.

Parameters:
message - The message describing this exception
cause - The root cause of this exception


Copyright © 2004 Ronald Blaschke. All Rights Reserved.