FileDocCategorySizeDatePackage
BookServiceException.javaAPI DocExample739Thu Sep 12 14:38:06 BST 2002ora.jwsnut.chapter2.bookservice

BookServiceException

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

Fields Summary
Constructors Summary
public BookServiceException(String message)
Constructs a BookServiceException 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();