1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
audiobook-maker/src/Exceptions/EndingException.java
2017-07-23 23:37:35 +02:00

15 lines
244 B
Java
Executable File

package Exceptions;
public class EndingException extends Exception {
public EndingException() {
super();
}
public EndingException(String s) {
super(s);
}
}
//~ Formatted by Jindent --- http://www.jindent.com