Opus5
Class DomainException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--Opus5.DomainException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ContainerEmptyException, ContainerFullException, InvalidOperationException

public class DomainException
extends java.lang.RuntimeException

Thrown by a method when it is called with an argument value (or values) for which it is not defined.

Version:
$Id: DomainException.java,v 3.1 1998/07/28 01:32:17 brpreiss Exp $
Author:
Bruno R. Preiss, P.Eng.
See Also:
Serialized Form

Constructor Summary
DomainException()
          Constructs a DomainException with no detail message.
DomainException(java.lang.String s)
          Constructs a DomainException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DomainException

public DomainException()
Constructs a DomainException with no detail message.

DomainException

public DomainException(java.lang.String s)
Constructs a DomainException with the specified detail message.
Parameters:
s - The detail message.