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