Skip to content

Commit

Permalink
Clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
kseewer committed Apr 29, 2019
1 parent 0a4c324 commit 99e9475
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package ch.hearc.odi.koulutus.exception;

public class CourseException extends Exception {

public CourseException(String message) {
super(message);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package ch.hearc.odi.koulutus.exception;

public class ProgramException extends Exception {
public ProgramException (String message) {
super(message);
}
public ProgramException (String message) {super(message);}
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package ch.hearc.odi.koulutus.exception;

public class SessionException extends Exception {

public SessionException(String message) {
super(message);
}

public SessionException(String message) { super(message);}
}

0 comments on commit 99e9475

Please sign in to comment.