2020-03-23 15:35:58 +01:00
|
|
|
/*
|
2024-09-24 09:42:07 +02:00
|
|
|
* Copyright (c) 2020 - present Cloudogu GmbH
|
2010-10-31 19:22:53 +01:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* This program 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, version 3.
|
2010-10-31 19:22:53 +01:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* This program 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.
|
2010-10-31 19:22:53 +01:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
2010-09-11 17:59:11 +02:00
|
|
|
*/
|
2024-09-24 09:42:07 +02:00
|
|
|
|
2010-09-11 17:59:11 +02:00
|
|
|
package sonia.scm.server;
|
|
|
|
|
|
2024-02-06 14:54:00 +01:00
|
|
|
|
2011-03-02 19:26:48 +01:00
|
|
|
public class ScmServerException extends RuntimeException
|
2010-09-11 17:59:11 +02:00
|
|
|
{
|
|
|
|
|
|
2011-03-02 19:26:48 +01:00
|
|
|
private static final long serialVersionUID = -6496747280225411051L;
|
2010-09-11 17:59:11 +02:00
|
|
|
|
|
|
|
|
|
2011-03-02 19:26:48 +01:00
|
|
|
public ScmServerException() {}
|
2010-09-11 17:59:11 +02:00
|
|
|
|
2024-02-06 14:54:00 +01:00
|
|
|
|
2011-03-02 19:26:48 +01:00
|
|
|
public ScmServerException(String message)
|
2010-09-11 17:59:11 +02:00
|
|
|
{
|
|
|
|
|
super(message);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-06 14:54:00 +01:00
|
|
|
|
2011-03-02 19:26:48 +01:00
|
|
|
public ScmServerException(Throwable throwable)
|
2010-09-11 17:59:11 +02:00
|
|
|
{
|
2011-03-02 19:26:48 +01:00
|
|
|
super(throwable);
|
2010-09-11 17:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
2024-02-06 14:54:00 +01:00
|
|
|
|
2011-03-02 19:26:48 +01:00
|
|
|
public ScmServerException(String message, Throwable throwable)
|
2010-09-11 17:59:11 +02:00
|
|
|
{
|
2011-03-02 19:26:48 +01:00
|
|
|
super(message, throwable);
|
2010-09-11 17:59:11 +02:00
|
|
|
}
|
|
|
|
|
}
|