net.sf.oval.exception.OValException Maven / Gradle / Ivy
/*******************************************************************************
* Portions created by Sebastian Thomschke are copyright (c) 2005-2011 Sebastian
* Thomschke.
*
* All Rights Reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Sebastian Thomschke - initial implementation.
*******************************************************************************/
package net.sf.oval.exception;
/**
* The root exception of all custom exceptions thrown by OVal
*
* @author Sebastian Thomschke
*/
public class OValException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public OValException(final String message)
{
super(message);
}
public OValException(final String message, final Throwable cause)
{
super(message, cause);
}
public OValException(final Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy