pm.pride.IllegalDescriptorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pride Show documentation
Show all versions of pride Show documentation
World's smallest O/R mapper for Java
/*******************************************************************************
* Copyright (c) 2001-2007 The PriDE team and MATHEMA Software GmbH
* All rights reserved. This toolkit and the accompanying materials
* are made available under the terms of the GNU Lesser General Public
* License (LGPL) which accompanies this distribution, and is available
* at http://pride.sourceforge.net/LGPL.html
*
* Contributors:
* Jan Lessner, MATHEMA Software GmbH - initial API and implementation
*******************************************************************************/
package pm.pride;
/**
* This exception is thrown during static initialization if a
* {@link pm.pride.RecordDescriptor} or an
* {@link pm.pride.AttributeDescriptor} have been miss-defined.
*
* @author Jan Lessner
*/
public class IllegalDescriptorException extends RuntimeException
{
public IllegalDescriptorException(String reason) { super(reason); }
public final static String REVISION_ID = "$Header: ";
}