1 17 18 19 20 package org.apache.lenya.ac.cache; 21 22 25 public class BuildException extends Exception { 26 27 30 public BuildException() { 31 super(); 32 } 33 34 38 public BuildException(String message) { 39 super(message); 40 } 41 42 47 public BuildException(String message, Throwable cause) { 48 super(message, cause); 49 } 50 51 55 public BuildException(Throwable cause) { 56 super(cause); 57 } 58 59 } 60 | Popular Tags |