

If a server cannot process the supported_groups TLS extension or the named groups in the extension, applications can either customize the supported group names with, or turn off the FFDHE mechanisms by setting the System Property jsse.enableFFDHEExtension to false.
APPLE JAVA SE 6 RUNTIME CODE
That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.Ĭopyright © 1993, 2015, Oracle and/or its affiliates. Parameters: cause - the cause (which is saved for later retrieval by theįor further API reference and developer documentation, see Java SE Developer Documentation. That are little more than wrappers for other throwables. This constructor is useful for runtime exceptions Public RuntimeException( Throwable cause) Constructs a new runtime exception with the specified cause and aĬause). Permitted, and indicates that the cause is nonexistent or

cause - the cause (which is saved for later retrieval by the Parameters: message - the detail message (which is saved for later retrievalīy the Throwable.getMessage() method). Note that the detail message associated withĬause is not automatically incorporated in Throwable cause) Constructs a new runtime exception with the specified detail message and Later retrieval by the Throwable.getMessage() method. Parameters: message - the detail message. The cause is not initialized, and may subsequently be initialized by aĬall to Throwable.initCause(). Public RuntimeException( String message) Constructs a new runtime exception with the specified detail message. Initialized by a call to Throwable.initCause(). The cause is not initialized, and may subsequently be Public RuntimeException() Constructs a new runtime exception with null as itsĭetail message.

ObjectĬlone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait ThrowableįillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString (which typically contains the class and detail message of RuntimeException is the superclass of thoseĮxceptions that can be thrown during the normal operation of theĪ method is not required to declare in its throwsĬlause any subclasses of RuntimeException that mightīe thrown during the execution of the method but not caught.Ĭonstructs a new runtime exception with null as itsĬonstructs a new runtime exception with the specified detail message.Ĭonstructs a new runtime exception with the specified detail message andĬonstructs a new runtime exception with the specified cause and aĭetail message of (cause=null ? null : cause.toString()) Public class RuntimeException extends Exception SUMMARY: NESTED | FIELD | CONSTR | METHODĬlass RuntimeException All Implemented Interfaces: Serializable Direct Known Subclasses: AnnotationTypeMismatchException, ArithmeticException, ArrayStoreException, BufferOverflowException, BufferUnderflowException, CannotRedoException, CannotUndoException, ClassCastException, CMMException, ConcurrentModificationException, DataBindingException, DOMException, EmptyStackException, EnumConstantNotPresentException, EventException, IllegalArgumentException, IllegalMonitorStateException, IllegalPathStateException, IllegalStateException, ImagingOpException, IncompleteAnnotationException, IndexOutOfBoundsException, JMRuntimeException, LSException, MalformedParameterizedTypeException, MirroredTypeException, MirroredTypesException, MissingResourceException, NegativeArraySizeException, NoSuchElementException, NoSuchMechanismException, NullPointerException, ProfileDataException, ProviderException, RasterFormatException, RejectedExecutionException, SecurityException, SystemException, TypeConstraintException, TypeNotPresentException, UndeclaredThrowableException, UnknownAnnotationValueException, UnknownElementException, UnknownTypeException, UnmodifiableSetException, UnsupportedOperationException, WebServiceException
