1 5 package org.easymock.internal; 6 7 public class RuntimeExceptionWrapper extends RuntimeException { 8 private final RuntimeException runtimeException; 9 10 public RuntimeExceptionWrapper(final RuntimeException runtimeException) { 11 this.runtimeException = runtimeException; 12 } 13 14 public RuntimeException getRuntimeException() { 15 return runtimeException; 16 } 17 } 18 | Popular Tags |