2020-09-13 01:28:27 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Christian Pierre MOMON <christian@momon.org>
|
|
|
|
*
|
|
|
|
* This file is part of StatoolInfos, simple service statistics tool.
|
|
|
|
*
|
|
|
|
* StatoolInfos is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* StatoolInfos is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with StatoolInfos. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package fr.devinsy.statoolinfos.core;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Class JugaException.
|
|
|
|
*
|
|
|
|
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
|
|
|
|
*/
|
|
|
|
public class StatoolInfosException extends Exception
|
|
|
|
{
|
2020-09-13 02:10:28 +02:00
|
|
|
private static final long serialVersionUID = 8323299610751708972L;
|
2020-09-13 01:28:27 +02:00
|
|
|
|
2020-09-13 02:10:28 +02:00
|
|
|
/**
|
|
|
|
* Instantiates a new Juga exception.
|
|
|
|
*/
|
|
|
|
public StatoolInfosException()
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
}
|
2020-09-13 01:28:27 +02:00
|
|
|
|
2020-09-13 02:10:28 +02:00
|
|
|
/**
|
|
|
|
* Instantiates a new Juga exception.
|
|
|
|
*
|
|
|
|
* @param message
|
|
|
|
* the message
|
|
|
|
*/
|
|
|
|
public StatoolInfosException(final String message)
|
|
|
|
{
|
|
|
|
super(message);
|
|
|
|
}
|
2020-09-13 01:28:27 +02:00
|
|
|
|
2020-09-13 02:10:28 +02:00
|
|
|
/**
|
|
|
|
* Instantiates a new Juga exception.
|
|
|
|
*
|
|
|
|
* @param message
|
|
|
|
* the message
|
|
|
|
* @param cause
|
|
|
|
* the cause
|
|
|
|
*/
|
|
|
|
public StatoolInfosException(final String message, final Throwable cause)
|
|
|
|
{
|
|
|
|
super(message, cause);
|
|
|
|
}
|
2020-09-13 01:28:27 +02:00
|
|
|
|
2020-09-13 02:10:28 +02:00
|
|
|
/**
|
|
|
|
* Instantiates a new Juga exception.
|
|
|
|
*
|
|
|
|
* @param cause
|
|
|
|
* the cause
|
|
|
|
*/
|
|
|
|
public StatoolInfosException(final Throwable cause)
|
|
|
|
{
|
|
|
|
super(cause);
|
|
|
|
}
|
2020-09-13 01:28:27 +02:00
|
|
|
}
|