All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.imsweb.validation.ValidationException Maven / Gradle / Ivy

There is a newer version: 021-11
Show newest version
/*
 * Copyright (C) 2004 Information Management Services, Inc.
 */
package com.imsweb.validation;

/**
 * Base class for all of the validation engine exceptions.
 * 

* Created on Apr 26, 2011 by depryf */ public class ValidationException extends Exception { /** Class UID */ private static final long serialVersionUID = 1L; /** * Created on Apr 19, 2010 by depryf * @param msg message */ public ValidationException(String msg) { super(msg); } /** * Created on Apr 19, 2010 by depryf * @param msg message */ public ValidationException(Throwable msg) { super(msg); } /** * Created on Apr 19, 2010 by depryf * @param msg message * @param cause cause */ public ValidationException(String msg, Throwable cause) { super(msg, cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy