1 22 package org.jboss.joinpoint.spi; 23 24 30 public class JoinpointException extends RuntimeException  31 { 32 33 private static final long serialVersionUID = 3257572793343030583L; 34 35 40 public JoinpointException(String description) 41 { 42 super(description); 43 } 44 45 51 public JoinpointException(String description, Throwable cause) 52 { 53 super(description, cause); 54 } 55 } 56 | Popular Tags |