Package ptolemy.caltrop.ddi
Class DDIException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ptolemy.caltrop.ddi.DDIException
-
- All Implemented Interfaces:
java.io.Serializable
public class DDIException extends java.lang.RuntimeException
A general-purpose exception used in the ddi package, used to indicate an error during domain dependent interpretation.- Since:
- Ptolemy II 4.0
- Version:
- $Id$
- Author:
- Christopher Chang
- See Also:
- Serialized Form
- Pt.AcceptedRating:
- Red (cxh)
- Pt.ProposedRating:
- Red (cxh)
-
-
Constructor Summary
Constructors Constructor Description DDIException()
Create a DDIException.DDIException(java.lang.String msg)
Create a DDIException with an error message.DDIException(java.lang.String msg, java.lang.Throwable cause)
Create a DDIException with an error message and a cause.DDIException(java.lang.Throwable cause)
Create a DDIException with a cause.
-
-
-
Constructor Detail
-
DDIException
public DDIException()
Create a DDIException.
-
DDIException
public DDIException(java.lang.String msg)
Create a DDIException with an error message.- Parameters:
msg
- The error message.
-
DDIException
public DDIException(java.lang.String msg, java.lang.Throwable cause)
Create a DDIException with an error message and a cause.- Parameters:
msg
- The error message.cause
- The cause.
-
DDIException
public DDIException(java.lang.Throwable cause)
Create a DDIException with a cause.- Parameters:
cause
- The cause.
-
-