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