Class 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$
    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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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.