//////////////////////////////////////////////////////////////////////////
//                                                                      //
//  MODULE: NoPrintjobException     AUTHOR: Tim Sabin                   //
//  DESCRIPTION: BadParameterException is thrown when an attempt to     //
//    print is made where the user has cancelled the print job.         //
//  DATE CREATED: 07/31/1998        LAST UPDATED: 07/31/1998            //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

/** <code>NoPrintjobException</code> is thrown when an attempt to
 * print is made where the user has cancelled the print job. */
public class NoPrintjobException extends Exception {
    /** Create a NoPrintjobException with the passed String. */
    public NoPrintjobException (String message) {
        super (message);
    }
}
