1 18 23 24 package org.apache.roller; 25 26 27 32 public class ThemeNotFoundException extends RollerException { 33 34 public ThemeNotFoundException(String s,Throwable t) { 35 super(s, t); 36 } 37 38 public ThemeNotFoundException(Throwable t) { 39 super(t); 40 } 41 42 public ThemeNotFoundException(String s) { 43 super(s); 44 } 45 46 public ThemeNotFoundException() { 47 super(); 48 } 49 50 } 51 | Popular Tags |