summaryrefslogtreecommitdiff
path: root/src/main/java/DNPM/exceptions/FormException.java
blob: 4d0d6dd72a118569602bf7df889338e3f6c8e0e3 (plain)
1
2
3
4
5
6
7
8
9
package DNPM.exceptions;

public class FormException extends RuntimeException {

    public FormException(String message) {
        super(message);
    }

}