Skip to content

09.Exception(例外)

domanthan edited this page Jun 22, 2020 · 1 revision
/**
 *
 */
package lesson.common;

/**
 * @author gridscale
 *
 */
public class InvalidValueException extends RuntimeException {

	/**
	 *
	 * @param message
	 */
	public InvalidValueException(String message) {
		super(message);
	}

}

Clone this wiki locally