edu.ucsb.adl.middleware
Class MiddlewareException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--edu.ucsb.adl.middleware.MiddlewareException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
BadRequestException, CancelException, InternalErrorException, NoAuthorizationException, ResourceException, UnsupportedException

public class MiddlewareException
extends java.lang.Exception

A general middleware exception. Subclasses of this class identify specific types of problems.

Version:
$Header: /export/home/gjanee/middleware/edu/ucsb/adl/middleware/RCS/MiddlewareException.java,v 1.1 1999/08/18 18:08:37 gjanee Exp $

$Log: MiddlewareException.java,v $ Revision 1.1 1999/08/18 18:08:37 gjanee Initial revision

Author:
Greg Janée
Alexandria Digital Library
See Also:
Serialized Form

Constructor Summary
MiddlewareException()
          Constructs a MiddlewareException with no detail message.
MiddlewareException(java.lang.String s)
          Constructs a MiddlewareException with a detail message.
 
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

MiddlewareException

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


MiddlewareException

public MiddlewareException(java.lang.String s)
Constructs a MiddlewareException with a detail message.

Parameters:
s - The detail message.