5373 AutopsyException comment and merged props

This commit is contained in:
William Schaefer 2019-08-02 15:28:17 -04:00
parent 48ece808a4
commit a5b20b24d9
2 changed files with 8 additions and 2 deletions

View File

@ -23,7 +23,9 @@ PlatformUtil.getProcVmUsed.sigarNotInit.msg=Cannot get virt mem used, sigar not
PlatformUtil.getProcVmUsed.gen.msg=Cannot get virt mem used, {0}
PlatformUtil.getJvmMemInfo.usageText=JVM heap usage: {0}, JVM non-heap usage: {1}
PlatformUtil.getPhysicalMemInfo.usageText=Physical memory usage (max, total, free): {0}, {1}, {2}
PlatformUtil.getAllMemUsageInfo.usageText={0}\n{1}\nProcess Virtual Memory: {2}
PlatformUtil.getAllMemUsageInfo.usageText={0}\n\
{1}\n\
Process Virtual Memory: {2}
# {0} - file name
ReadImageTask.mesageText=Reading image: {0}
StringExtract.illegalStateException.cannotInit.msg=Unicode table not properly initialized, cannot instantiate StringExtract

View File

@ -18,6 +18,9 @@
*/
package org.sleuthkit.autopsy.exceptions;
/*
* An exception to be thrown which can contain a user friendly message.
*/
public abstract class AutopsyException extends Exception {
private static final long serialVersionUID = 1L;
@ -71,7 +74,8 @@ public abstract class AutopsyException extends Exception {
/**
* Get the user friendly message if one exists.
*
* @return the user friendly message if one exists, otherwise returns the exceptions normal message
* @return the user friendly message if one exists, otherwise returns the
* exceptions normal message
*/
public String getUserMessage() {
return userMessage;