1

Archive Audiobook Maker

This commit is contained in:
Kim Wittenburg
2017-07-23 23:37:35 +02:00
commit ab5386e17c
37 changed files with 2149 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package Exceptions;
public class NotSelectedException extends Exception {
public NotSelectedException(){
super();
}
public NotSelectedException(String message){
super(message);
}
}