1 57 58 package org.apache.wsif.compiler.schema; 59 60 63 public class SchemaException extends Exception { 64 private static final long serialVersionUID = 1L; 65 Throwable targetException; 66 67 public SchemaException(String message) { 68 super(message); 69 } 70 71 public SchemaException(String message, Throwable targetException) { 72 super(message); 73 this.targetException = targetException; 74 } 75 76 Throwable getTargetException() { 77 return targetException; 78 } 79 } | Popular Tags |