<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">//////////////////////////////////////////////////////////////////////////
//                                                                      //
//  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            //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

/** &lt;code&gt;NoPrintjobException&lt;/code&gt; 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);
    }
}
</pre></body></html>