Go to the documentation of this file.
19package org.sleuthkit.autopsy.integrationtesting;
21import org.apache.commons.lang.exception.ExceptionUtils;
26class ExceptionObject {
28 private final String message;
29 private final String stackTrace;
30 private final ExceptionObject innerException;
32 ExceptionObject(Throwable t) {
33 this.message = t.getMessage();
34 this.stackTrace = ExceptionUtils.getStackTrace(t);
35 this.innerException = (t.getCause() ==
null) ? null :
new ExceptionObject(t.getCause());
41 public String getMessage() {
48 public String getStackTrace() {
55 public ExceptionObject getInnerException() {
56 return innerException;
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.