FileDocCategorySizeDatePackage
EBookServiceException.javaAPI DocExample749Tue Oct 08 11:51:36 BST 2002ora.jwsnut.chapter6.extendedbookservice

EBookServiceException

public class EBookServiceException extends Exception
A service-specific exception that reports problems while executing methods of the book web service.

Fields Summary
Constructors Summary
public EBookServiceException(String message)
Constructs an EBookServiceException with an associated message.

param
message a message describing the reason for the exception.

        super(message);
    
Methods Summary
public java.lang.StringgetMessage()
Gets the message associated with this exception.

return
the message describing the reason for the exception.

        return super.getMessage();