Skip to content
Snippets Groups Projects
Commit 84e7d6a5 authored by Andrey Ruzhanskiy's avatar Andrey Ruzhanskiy
Browse files

Changed name of Exception.

parent a9b08d08
No related branches found
No related tags found
1 merge request!14Feat/braille print back end 4
......@@ -7,19 +7,19 @@ package de.tudresden.inf.mci.brailleplot.exporter;
* @version 11.07.2019
*/
public class NotSupportedFileExtension extends Exception {
public class NotSupportedFileExtensionException extends Exception {
public NotSupportedFileExtension() { }
public NotSupportedFileExtensionException() { }
public NotSupportedFileExtension(final String message) {
public NotSupportedFileExtensionException(final String message) {
super(message);
}
public NotSupportedFileExtension(final Throwable cause) {
public NotSupportedFileExtensionException(final Throwable cause) {
super(cause);
}
public NotSupportedFileExtension(final String message, final Throwable cause) {
public NotSupportedFileExtensionException(final String message, final Throwable cause) {
super(message, cause);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment