You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PhotoViewer/src/de/thm/tlf/photoViewer/NoPicturesLoadedException.java

11 lines
327 B
Java

package de.thm.tlf.photoViewer;
/**
* Exception for handling errors when no pictures are loaded into the program
* but any of the actions that involve pictures are performed.
*/
public class NoPicturesLoadedException extends Exception{
NoPicturesLoadedException(){
super("No pictures have been loaded");
}
}