1 23 24 25 package com.sun.jdo.api.persistence.enhancer; 26 27 28 33 public class EnhancerFatalError 34 extends Exception  35 { 36 39 public final Throwable nested; 40 41 44 public EnhancerFatalError() 45 { 46 this.nested = null; 47 } 48 49 53 public EnhancerFatalError(String msg) 54 { 55 super(msg); 56 this.nested = null; 57 } 58 59 63 public EnhancerFatalError(Throwable nested) 64 { 65 super(nested.toString()); 66 this.nested = nested; 67 } 68 69 73 public EnhancerFatalError(String msg, Throwable nested) 74 { 75 super(msg); 76 this.nested = nested; 77 } 78 } 79 | Popular Tags |