This repository has been archived by the owner on Jul 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
christian.rijke
committed
Sep 2, 2015
1 parent
a78e824
commit 6a9d94c
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
common/src/main/java/org/echocat/marquardt/common/exceptions/AlreadyLoggedInException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* echocat Marquardt Java SDK, Copyright (c) 2015 echocat | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
package org.echocat.marquardt.common.exceptions; | ||
|
||
public class AlreadyLoggedInException extends RuntimeException { | ||
|
||
public AlreadyLoggedInException() { | ||
super(); | ||
} | ||
|
||
public AlreadyLoggedInException(String message) { | ||
super(message); | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
common/src/main/java/org/echocat/marquardt/common/exceptions/LoginFailedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* echocat Marquardt Java SDK, Copyright (c) 2015 echocat | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
package org.echocat.marquardt.common.exceptions; | ||
|
||
public class LoginFailedException extends RuntimeException { | ||
|
||
public LoginFailedException() { | ||
super(); | ||
} | ||
|
||
public LoginFailedException(String message) { | ||
super(message); | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
common/src/main/java/org/echocat/marquardt/common/exceptions/UserExistsException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* echocat Marquardt Java SDK, Copyright (c) 2015 echocat | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
package org.echocat.marquardt.common.exceptions; | ||
|
||
public class UserExistsException extends RuntimeException { | ||
|
||
public UserExistsException() { | ||
super(); | ||
} | ||
|
||
public UserExistsException(String message) { | ||
super(message); | ||
} | ||
|
||
} |