1 43 package net.jforum.exceptions; 44 45 49 public class CategoryNotFoundException extends RuntimeException { 50 public CategoryNotFoundException(String message) { 51 super(message); 52 } 53 54 public CategoryNotFoundException(Throwable t) { 55 super(t); 56 this.setStackTrace(t.getStackTrace()); 57 } 58 59 public CategoryNotFoundException(String message, Throwable t) { 60 super(message, t); 61 this.setStackTrace(t.getStackTrace()); 62 } 63 } 64 | Popular Tags |