Skip to content

Commit a08107e

Browse files
committed
feat: EmptyDequeException 작성
1 parent 1b65d86 commit a08107e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package exception;
2+
3+
public class EmptyDequeException extends RuntimeException {
4+
5+
public EmptyDequeException() {
6+
super("Deque is Emtpy.");
7+
}
8+
}

0 commit comments

Comments
 (0)