Siba/src/org/dclermonte/siba/SibaException.java

46 lines
838 B
Java

/*
* Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*/
package org.dclermonte.siba;
/**
*
* @author dclermonte
*
*/
public class SibaException extends Exception
{
private static final long serialVersionUID = 2909630770291570845L;
public SibaException()
{
super();
}
public SibaException(final String message)
{
super(message);
}
public SibaException(final String message, final Throwable cause)
{
super(message, cause);
}
protected SibaException(final String message, final Throwable cause, final boolean enableSuppression,
final boolean writableStackTrace)
{
super(message, cause, enableSuppression, writableStackTrace);
}
public SibaException(final Throwable cause)
{
super(cause);
}
}