-
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.
Merge pull request #20 from comento-backend-camp/feature/18
Feature/18
- Loading branch information
Showing
16 changed files
with
222 additions
and
132 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 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 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 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 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
10 changes: 5 additions & 5 deletions
10
ticket/src/main/java/comento/backend/ticket/config/customException/DuplicatedException.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,10 +1,10 @@ | ||
package comento.backend.ticket.config.customException; | ||
|
||
public class DuplicatedException extends RuntimeException{ | ||
public DuplicatedException() { | ||
} | ||
import comento.backend.ticket.config.CustomException; | ||
import comento.backend.ticket.config.ErrorCode; | ||
|
||
public DuplicatedException(String message) { | ||
super(message); | ||
public class DuplicatedException extends CustomException { | ||
public DuplicatedException(ErrorCode errorCode) { | ||
super(errorCode); | ||
} | ||
} |
10 changes: 5 additions & 5 deletions
10
ticket/src/main/java/comento/backend/ticket/config/customException/NoAuthException.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,10 +1,10 @@ | ||
package comento.backend.ticket.config.customException; | ||
|
||
public class NoAuthException extends RuntimeException{ | ||
public NoAuthException() { | ||
} | ||
import comento.backend.ticket.config.CustomException; | ||
import comento.backend.ticket.config.ErrorCode; | ||
|
||
public NoAuthException(String message) { | ||
super(message); | ||
public class NoAuthException extends CustomException { | ||
public NoAuthException(ErrorCode errorCode) { | ||
super(errorCode); | ||
} | ||
} |
10 changes: 5 additions & 5 deletions
10
...et/src/main/java/comento/backend/ticket/config/customException/NotFoundDataException.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,10 +1,10 @@ | ||
package comento.backend.ticket.config.customException; | ||
|
||
public class NotFoundDataException extends RuntimeException{ | ||
public NotFoundDataException() { | ||
} | ||
import comento.backend.ticket.config.CustomException; | ||
import comento.backend.ticket.config.ErrorCode; | ||
|
||
public NotFoundDataException(String message) { | ||
super(message); | ||
public class NotFoundDataException extends CustomException { | ||
public NotFoundDataException(ErrorCode errorCode) { | ||
super(errorCode); | ||
} | ||
} |
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 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 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
Oops, something went wrong.