edu.ucsb.adl.middleware
Class BadRequestException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--edu.ucsb.adl.middleware.MiddlewareException
                    |
                    +--edu.ucsb.adl.middleware.BadRequestException
All Implemented Interfaces:
java.io.Serializable

public class BadRequestException
extends MiddlewareException

Thrown when a client request is invalid.

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

$Log: BadRequestException.java,v $ Revision 1.1 1999/08/18 18:12:53 gjanee Initial revision

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

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

BadRequestException

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


BadRequestException

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

Parameters:
s - The detail message.