1 16 17 package org.apache.axis2.wsdl.codegen; 18 19 23 public class CodeGenerationException extends Exception { 24 25 public CodeGenerationException(String message){ 26 super(message); 27 } 28 29 public CodeGenerationException(String message, Throwable throwable){ 30 super(message, throwable); 31 } 32 33 public CodeGenerationException(Throwable throwable){ 34 super(throwable); 35 } 36 } 37 | Popular Tags |