FileDocCategorySizeDatePackage
SmallBookServiceException.javaAPI DocExample763Thu Oct 10 11:27:42 BST 2002ora.jwsnut.chapter6.smallbookservice

SmallBookServiceException

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

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