Skip to content

Commit

Permalink
[BE/#29] Feat : 표준 에러 클래스 추가
Browse files Browse the repository at this point in the history
- BaseException extends RuntimeException
  • Loading branch information
MuseopKim committed Jun 15, 2020
1 parent 8f678ff commit cd789d2
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.codesquad.issuetracker.ragdoll.exception;

import com.codesquad.issuetracker.ragdoll.response.ApiResponse;

public class BaseException extends RuntimeException {

private String errorMessage;

public BaseException(String errorMessage) {
super(errorMessage);
}
}

0 comments on commit cd789d2

Please sign in to comment.