public class SysError extends ProError
| Constructor and Description |
|---|
SysError() |
| Modifier and Type | Method and Description |
|---|---|
void |
__lang_SysError_constructor__()
Implicit, no parameter, method associated with the implicit legacy constructor for the
Progress.Lang.SysError class. |
void |
__lang_SysError_constructor__(character _msg,
integer _num)
Explicit method associated with a legacy constructor for the
Progress.Lang.SysError class. |
static object<? extends SysError> |
newInstance(character msg,
integer num)
Create a new SysError instance and return it as a legacy object.
|
static object<? extends SysError> |
newInstance(java.lang.String msg,
int num)
Create a new SysError instance and return it as a legacy object.
|
static object<? extends SysError> |
newInstance(java.lang.String msg,
int num,
boolean prefix,
boolean addDot)
Create a new SysError instance and return it as a legacy object.
|
__lang_ProError_constructor__, __lang_ProError_constructor__, addMessage, getCallStack, getMessage, getMessageNum, getNumMessages, getSeverity, populateCallStack, readExternal, setSeverity, validIndex, writeExternal__isValidInternal__, __lang_BaseObject_constructor__, __setValidInternal__, assertNotNull, assertNotNull, getLegacyClass, getNextSibling, getPrevSibling, legacyClone, legacyEquals, toLegacyStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait__isValidInternal__, __lang_BaseObject_constructor__, __setValidInternal__, getLegacyClass, getNextSibling, getPrevSibling, isTracked, legacyClone, legacyEquals, toLegacyStringpublic void __lang_SysError_constructor__()
Progress.Lang.SysError class.public void __lang_SysError_constructor__(character _msg, integer _num)
Progress.Lang.SysError class._msg - The message._num - The message number.public static object<? extends SysError> newInstance(character msg, integer num)
msg - The error message.num - The error number.public static object<? extends SysError> newInstance(java.lang.String msg, int num)
msg - The error message.num - The error number.public static object<? extends SysError> newInstance(java.lang.String msg, int num, boolean prefix, boolean addDot)
msg - The error message.num - The error number.prefix - Prefix with two stars when building the error message.addDot - The dot when building the error message.