jdk/src/java.base/share/classes/java/lang/Throwable.java
changeset 25991 e48157b42439
parent 25979 42e5d9f8087e
parent 25859 3317bb8137f4
child 28059 e576535359cc
equal deleted inserted replaced
25876:d06a6d3c66c0 25991:e48157b42439
   137     private static class SentinelHolder {
   137     private static class SentinelHolder {
   138         /**
   138         /**
   139          * {@linkplain #setStackTrace(StackTraceElement[]) Setting the
   139          * {@linkplain #setStackTrace(StackTraceElement[]) Setting the
   140          * stack trace} to a one-element array containing this sentinel
   140          * stack trace} to a one-element array containing this sentinel
   141          * value indicates future attempts to set the stack trace will be
   141          * value indicates future attempts to set the stack trace will be
   142          * ignored.  The sentinal is equal to the result of calling:<br>
   142          * ignored.  The sentinel is equal to the result of calling:<br>
   143          * {@code new StackTraceElement("", "", null, Integer.MIN_VALUE)}
   143          * {@code new StackTraceElement("", "", null, Integer.MIN_VALUE)}
   144          */
   144          */
   145         public static final StackTraceElement STACK_TRACE_ELEMENT_SENTINEL =
   145         public static final StackTraceElement STACK_TRACE_ELEMENT_SENTINEL =
   146             new StackTraceElement("", "", null, Integer.MIN_VALUE);
   146             new StackTraceElement("", "", null, Integer.MIN_VALUE);
   147 
   147