ptolemy.caltrop
Class CalIOException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by 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 a caltrop.data.Token on a channel.

Since:
Ptolemy II 4.0
Version:
$Id: CalIOException.java 38798 2005-07-08 20:00:01Z cxh $
Author:
Jörn W. Janneck
See Also:
Serialized Form
Accepted Rating:
Red (cxh)
Proposed Rating:
Red (cxh)

Constructor Summary
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.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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.