openllet.OpenlletCmdException Maven / Gradle / Ivy
// Copyright (c) 2006 - 2008, Clark & Parsia, LLC.
// This source code is available under the terms of the Affero General Public
// License v3.
//
// Please see LICENSE.txt for full license terms, including the availability of
// proprietary exceptions.
// Questions, comments, or requests for clarification: [email protected]
package openllet;
import openllet.atom.OpenError;
/**
*
* Copyright: Copyright (c) 2008
*
*
* Company: Clark & Parsia, LLC.
*
*
* @author Markus Stocker
*/
public class OpenlletCmdException extends OpenError
{
private static final long serialVersionUID = -5472994436987740189L;
/**
* Create an exception with the given error message.
*
* @param msg
*/
public OpenlletCmdException(final String msg)
{
super(msg);
}
public OpenlletCmdException(final Throwable cause)
{
super(cause);
}
public OpenlletCmdException(final String msg, final Throwable cause)
{
super(msg, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy