1 19 20 package com.hp.hpl.jena.reasoner.dig; 23 24 25 28 37 public class DIGWrappedException 38 extends DIGReasonerException 39 { 40 43 46 49 private Throwable m_ex; 50 51 54 58 public DIGWrappedException( Throwable ex ) { 59 super( "DIG wrapped exception: " + ex.getMessage() ); 60 m_ex = ex; 61 } 62 63 64 67 71 public Throwable getWrappedException() { 72 return m_ex; 73 } 74 75 76 79 83 } 84 85 86 112 | Popular Tags |