1 package org.apache.beehive.controls.runtime.generator; 2 3 20 21 26 public class CodeGenerationException extends RuntimeException  27 { 28 public CodeGenerationException(String msg, Exception e) { super(msg, e); } 29 public CodeGenerationException(String msg) { super(msg); } 30 public CodeGenerationException(Exception e) { super("Code Generation Exception", e); } 31 } 32 33 | Popular Tags |