View Javadoc
1 package com.inigoserrano.isvalidator.checkExceptions; 2 3 /*** 4 * Throw if the data isnīt an email 5 * 6 * @license@ 7 * 8 * @version @version@ 9 * @author @author@ 10 **/ 11 public class NoEmailException extends CheckException { 12 /*** 13 * Default Constructor 14 **/ 15 public NoEmailException() { 16 super(); 17 } 18 19 /*** 20 * Constructor with an error message 21 * @param errorDescription the message of the error 22 **/ 23 public NoEmailException(String errorDescription) { 24 super(errorDescription); 25 } 26 }

This page was automatically generated by Maven