Skip to content

Commit 7adbb8d

Browse files
committed
feat: add DiskDriveFullException
1 parent 0d27828 commit 7adbb8d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.codedifferently.lesson16.dylans_xbox;
2+
3+
public class DiskDriveFullException extends Exception {
4+
public DiskDriveFullException(String message) {
5+
super(message);
6+
}
7+
}

0 commit comments

Comments
 (0)