1 package org.apache.beehive.wsm.processor; 2 3 20 21 26 public class ProcessorException extends RuntimeException { 27 public ProcessorException(String msg, Exception e) { 28 super(msg, e); 29 } 30 31 public ProcessorException(String msg) { 32 super(msg); 33 } 34 35 public ProcessorException(Exception e) { 36 super("Code Generation Exception", e); 37 } 38 } 39 40 | Popular Tags |