1 19 package org.objectweb.carol.cmi.compiler; 20 21 26 public class CompilerException extends Exception { 27 CompilerException() { 28 super(); 29 } 30 31 CompilerException(String message) { 32 super(message); 33 } 34 35 CompilerException(String message, Throwable cause) { 36 super(message + cause.toString()); 37 } 38 39 CompilerException(Throwable cause) { 40 super(cause.toString()); 41 } 42 } 43 | Popular Tags |