-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new Exception for when user information is missing (#5)
- Loading branch information
1 parent
18d34e3
commit 959ae4a
Showing
2 changed files
with
35 additions
and
21 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
src/main/java/org/fenixedu/santandersdk/exception/SantanderMissingInformationException.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,13 @@ | ||
package org.fenixedu.santandersdk.exception; | ||
|
||
public class SantanderMissingInformationException extends SantanderValidationException { | ||
|
||
public SantanderMissingInformationException() { | ||
super(); | ||
} | ||
|
||
public SantanderMissingInformationException(String msg) { | ||
super(msg); | ||
} | ||
|
||
} |
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