1 8 package org.codehaus.loom.interfaces; 9 10 15 public final class LoomException 16 extends Exception  17 { 18 19 private final Throwable m_cause; 20 21 26 public LoomException( final String message ) 27 { 28 this( message, null ); 29 } 30 31 37 public LoomException( final String message, final Throwable throwable ) 38 { 39 super( message ); 40 m_cause = throwable; 41 } 42 43 48 public Throwable getCause() 49 { 50 return m_cause; 51 } 52 } 53 | Popular Tags |