1 package de.jwi.jgallery; 2 3 24 25 26 27 32 public class GalleryNotFoundException extends GalleryException 33 { 34 35 public GalleryNotFoundException() 36 { 37 super(); 38 } 39 40 public GalleryNotFoundException(String message) 41 { 42 super(message); 43 } 44 45 public GalleryNotFoundException(Throwable cause) 46 { 47 super(cause); 48 } 49 50 public GalleryNotFoundException(String message, Throwable cause) 51 { 52 super(message, cause); 53 } 54 55 } 56 | Popular Tags |