1 package com.inigoserrano.isvalidator.checkExceptions;
2
3 /***
4 * Throw if the data is blank ("")
5 * @license@
6 * @version @version@
7 * @author @author@
8 **/
9 public class BlankException extends CheckException {
10 /***
11 * Default Constructor
12 **/
13 public BlankException() {
14 super();
15 }
16
17 /***
18 * Constructor with an error message
19 * @param errorDescription the message of the error
20 **/
21 public BlankException(String errorDescription) {
22 super(errorDescription);
23 }
24 }
This page was automatically generated by Maven