Homework 1
This commit is contained in:
parent
49bca7f856
commit
12f678a924
43 changed files with 3703 additions and 0 deletions
14
src/cd/ToDoException.java
Normal file
14
src/cd/ToDoException.java
Normal file
|
@ -0,0 +1,14 @@
|
|||
package cd;
|
||||
|
||||
/** TAs insert this to mark code that students need to write */
|
||||
public class ToDoException extends RuntimeException {
|
||||
private static final long serialVersionUID = 4054810321239901944L;
|
||||
|
||||
public ToDoException() {
|
||||
}
|
||||
|
||||
public ToDoException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue