FileDocCategorySizeDatePackage
InsuffPaymentException.javaAPI DocExample471Thu Feb 17 20:01:22 GMT 2000ProblemDomain

InsuffPaymentException.java

/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/

package ProblemDomain;

public class InsuffPaymentException extends RuntimeException {
    public InsuffPaymentException() {
        super();
    }

    public InsuffPaymentException(String s) {
        super(s);
    }
}