com.eva.properties.ParserException Maven / Gradle / Ivy
/*
* $Id: ParserException.java 109 2007-03-24 14:55:03Z max $
*
* Copyright (c) 2007 Maximilian Antoni. All rights reserved.
*
* This software is licensed as described in the file LICENSE.txt, which you
* should have received as part of this distribution. The terms are also
* available at http://www.maxantoni.de/projects/eva-properties/license.txt.
*/
package com.eva.properties;
/**
* is a checked exception used internally in the PropertiesParser class only.
*
* @author max
* @version $Revision: 109 $
*/
class ParserException extends Exception {
private static final long serialVersionUID = 7227727482495826456L;
/**
* creates a new parser exception with the given message.
*
* @param inMessage the message.
*/
ParserException(String inMessage) {
super(inMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy