ccs
Class ArghException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by ccs.ArghException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ConsistencyException

public class ArghException
extends java.io.IOException

An exception thrown by CCS classes to indicate a more severe problem than a LoseException. Receipt of one of these will generally cause the application to stop. These date from the earliest days of the CCS codebase and are being replaced with more specific alternatives; this is a long transition. Most of these alternatives subclass this, for backward compatibility during the transition. New code should use a more specific alternative.

See Also:
Serialized Form

Constructor Summary
ArghException(java.lang.String msg)
          Constructs a new ArghException.
 
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

ArghException

public ArghException(java.lang.String msg)
Constructs a new ArghException. All ArghExceptions have a detail message.

Parameters:
msg - The detail message.