com.sodius.mdw.core
Class CoreException

java.lang.Object
  extended by FilteredException
      extended by com.sodius.mdw.core.CoreException

public class CoreException
extends FilteredException

A checked exception representing a failure.

This class is not intended to be subclassed by clients but may be instantiated.


Constructor Summary
CoreException(String message)
          Constructs a CoreException with the specified detail message.
CoreException(String message, Throwable cause)
          Constructs a CoreException with the specified detail message and the specified cause.
CoreException(Throwable cause)
          Constructs a CoreException with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CoreException

public CoreException(String message)
Constructs a CoreException with the specified detail message.

Parameters:
message - the detail message.

CoreException

public CoreException(Throwable cause)
Constructs a CoreException with the specified cause.

Parameters:
cause - the cause.

CoreException

public CoreException(String message,
                     Throwable cause)
Constructs a CoreException with the specified detail message and the specified cause.

Parameters:
message - the detail message.
cause - the cause.