1 22 package org.jboss.aop.instrument; 23 24 30 public class TransformationException extends RuntimeException  31 { 32 private static final long serialVersionUID = -9087730534133925094L; 33 34 public TransformationException() 35 { 36 } 37 38 public TransformationException(String message) 39 { 40 super(message); 41 } 42 43 public TransformationException(String message, Throwable cause) 44 { 45 super(message, cause); 46 } 47 48 public TransformationException(Throwable cause) 49 { 50 super(cause); 51 } 52 } 53 | Popular Tags |