1 23 24 25 package com.sun.jdo.api.persistence.enhancer.meta; 26 27 28 32 public class JDOMetaDataUserException 33 extends RuntimeException  35 { 36 39 public final Throwable nested; 40 41 45 public JDOMetaDataUserException() 46 { 47 this.nested = null; 48 } 49 50 54 public JDOMetaDataUserException(String msg) 55 { 56 super(msg); 57 this.nested = null; 58 } 59 60 64 public JDOMetaDataUserException(Throwable nested) 65 { 66 super("nested exception: " + nested); this.nested = nested; 68 } 69 70 74 public JDOMetaDataUserException(String msg, Throwable nested) 75 { 76 super(msg); 77 this.nested = nested; 78 } 79 } 80 | Popular Tags |