Package ptolemy.caltrop
Class CalIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ptolemy.caltrop.CalIOException
-
- All Implemented Interfaces:
java.io.Serializable
public class CalIOException extends java.lang.RuntimeException
An exception used to indicate an IO error during interpretation of a CAL actor in Ptolemy. This can occur during the getting/putting of acaltrop.data.Token
on a channel.- Since:
- Ptolemy II 4.0
- Version:
- $Id$
- Author:
- Jörn W. Janneck
- See Also:
- Serialized Form
- Pt.AcceptedRating:
- Red (cxh)
- Pt.ProposedRating:
- Red (cxh)
-
-
Constructor Summary
Constructors Constructor Description CalIOException()
Create a CalIOException().CalIOException(java.lang.String msg)
Create a CalIOException with a message.CalIOException(java.lang.String msg, java.lang.Throwable cause)
Create a CalIOException with a message and a cause.CalIOException(java.lang.Throwable cause)
Create a CalIOException with a cause.
-
-
-
Constructor Detail
-
CalIOException
public CalIOException()
Create a CalIOException().
-
CalIOException
public CalIOException(java.lang.String msg)
Create a CalIOException with a message.- Parameters:
msg
- The message.
-
CalIOException
public CalIOException(java.lang.String msg, java.lang.Throwable cause)
Create a CalIOException with a message and a cause.- Parameters:
msg
- The message.cause
- The cause.
-
CalIOException
public CalIOException(java.lang.Throwable cause)
Create a CalIOException with a cause.- Parameters:
cause
- The cause.
-
-