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