-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
모든 도메인 객체 exception Notnull method 제거 (#184)
* refactor: domain exception을 server exception을 상속받도록 수정 * refactor: 사용하지 않는 MemberException 제거 * refactor: 모든 도메인 객체 exception Notnull method 제거 * refactor: stream 컨벤션에 맞도록 수정 * refactor: conflict 해결 * test: 에러메세지 수정 * refactor: TagException 상세히 분할(RunnerPostTag, SupporterTechnicalTag) * refactor: TagException 상세히 분할(RunnerPostTag, SupporterTechnicalTag)에 따른 테스트 수정 * refactor: stream 점 위치 수정
- Loading branch information
1 parent
9f3bce1
commit a163ab8
Showing
28 changed files
with
146 additions
and
169 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
22 changes: 0 additions & 22 deletions
22
backend/baton/src/main/java/touch/baton/domain/runner/exception/OldRunnerException.java
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
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
17 changes: 0 additions & 17 deletions
17
...src/main/java/touch/baton/domain/runnerpost/exception/OldRunnerPostBusinessException.java
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
...d/baton/src/main/java/touch/baton/domain/runnerpost/exception/OldRunnerPostException.java
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
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
15 changes: 0 additions & 15 deletions
15
...end/baton/src/main/java/touch/baton/domain/supporter/exception/OldSupporterException.java
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
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
15 changes: 0 additions & 15 deletions
15
backend/baton/src/main/java/touch/baton/domain/tag/exception/OldTagException.java
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
...nd/baton/src/main/java/touch/baton/domain/tag/exception/RunnerPostTagDomainException.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,10 @@ | ||
package touch.baton.domain.tag.exception; | ||
|
||
import touch.baton.domain.common.exception.DomainException; | ||
|
||
public class RunnerPostTagDomainException extends DomainException { | ||
|
||
public RunnerPostTagDomainException(final String message) { | ||
super(message); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
.../src/main/java/touch/baton/domain/tag/exception/SupporterTechnicalTagDomainException.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,10 @@ | ||
package touch.baton.domain.tag.exception; | ||
|
||
import touch.baton.domain.common.exception.DomainException; | ||
|
||
public class SupporterTechnicalTagDomainException extends DomainException { | ||
|
||
public SupporterTechnicalTagDomainException(final String message) { | ||
super(message); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...end/baton/src/main/java/touch/baton/domain/tag/exception/TechnicalTagDomainException.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,10 @@ | ||
package touch.baton.domain.tag.exception; | ||
|
||
import touch.baton.domain.common.exception.DomainException; | ||
|
||
public class TechnicalTagDomainException extends DomainException { | ||
|
||
public TechnicalTagDomainException(final String message) { | ||
super(message); | ||
} | ||
} |
Oops, something went wrong.