00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 package com.sleepycat.util;
00011
00017 public class RuntimeExceptionWrapper extends RuntimeException
00018 implements ExceptionWrapper {
00019
00020 private Throwable e;
00021
00022 public RuntimeExceptionWrapper(Throwable e) {
00023
00024 super(e.getMessage());
00025 this.e = e;
00026 }
00027
00031 public Throwable getDetail() {
00032
00033 return e;
00034 }
00035
00036 public Throwable getCause() {
00037
00038 return e;
00039 }
00040 }