FileDocCategorySizeDatePackage
PrintException.javaAPI DocJava SE 5 API1361Fri Aug 26 14:57:42 BST 2005javax.print

PrintException

public class PrintException extends Exception
Class PrintException encapsulates a printing-related error condition that occurred while using a Print Service instance. This base class furnishes only a string description of the error. Subclasses furnish more detailed information if applicable.

Fields Summary
Constructors Summary
public PrintException()
Construct a print exception with no detail message.

    	super();
    
public PrintException(String s)
Construct a print exception with the given detail message.

param
s Detail message, or null if no detail message.

    	super (s);
    
public PrintException(Exception e)
Construct a print exception chaining the supplied exception.

param
e Chained exception.

    	super ( e);
    
public PrintException(String s, Exception e)
Construct a print exception with the given detail message and chained exception.

param
s Detail message, or null if no detail message.
param
e Chained exception.

    	super (s, e);
    
Methods Summary