net.sf.oval.exception.ReflectionException 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;
/**
* @author Sebastian Thomschke
*/
public class ReflectionException extends OValException
{
private static final long serialVersionUID = 1L;
public ReflectionException(final String message)
{
super(message);
}
public ReflectionException(final String message, final Throwable cause)
{
super(message, cause);
}
public ReflectionException(final Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy