-
Notifications
You must be signed in to change notification settings - Fork 47
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
Jenkins CI
committed
Mar 11, 2024
1 parent
2ab0f26
commit a5c0e97
Showing
52 changed files
with
492 additions
and
387 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
7 changes: 7 additions & 0 deletions
7
Sources/pushwoosh/src/main/java/com/pushwoosh/exception/GroupIdNotFoundException.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,7 @@ | ||
package com.pushwoosh.exception; | ||
|
||
public class GroupIdNotFoundException extends PushwooshException{ | ||
public GroupIdNotFoundException(String description) { | ||
super(description); | ||
} | ||
} |
5 changes: 4 additions & 1 deletion
5
Sources/pushwoosh/src/main/java/com/pushwoosh/exception/NotificationIdNotFoundException.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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
package com.pushwoosh.exception; | ||
|
||
public class NotificationIdNotFoundException extends Exception{ | ||
public class NotificationIdNotFoundException extends PushwooshException{ | ||
public NotificationIdNotFoundException(String description) { | ||
super(description); | ||
} | ||
} |
Oops, something went wrong.