com.legstar.coxb.util.JAXBAnnotationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of legstar-coxbapi Show documentation
Show all versions of legstar-coxbapi Show documentation
Cobol Transformers Application Programming Interface.
The newest version!
/*******************************************************************************
* Copyright (c) 2015 LegSem.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v2.1
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* Contributors:
* LegSem - initial API and implementation
******************************************************************************/
package com.legstar.coxb.util;
/**
* If the JAXB annotations are incomplete or inconsistent we
* raise such an exception.
*/
public class JAXBAnnotationException extends Exception {
/** Default serial ID. */
private static final long serialVersionUID = 9147947946375560767L;
/**
* Constructor from an error message.
* @param message the text message
* */
public JAXBAnnotationException(final String message) {
super(message);
}
/**
* Constructor from an inner exception.
* @param e the inner exception
* */
public JAXBAnnotationException(final Exception e) {
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy