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

41 lines
802 B
Java
Raw Normal View History

2016-05-16 23:40:07 +02:00
/*
* 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;
2016-05-19 18:40:00 +02:00
public class SibaException extends Exception
2016-05-16 23:40:07 +02:00
{
2016-05-20 16:21:10 +02:00
private static final long serialVersionUID = 2909630770291570845L;
2016-05-16 23:40:07 +02:00
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);
}
}