Instance Constructors
-
new
UndefinedBehaviorError(cause: Throwable)
-
new
UndefinedBehaviorError(message: String)
-
new
UndefinedBehaviorError(message: String, cause: Throwable)
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
-
final
def
==(arg0: Any): Boolean
-
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
-
-
-
-
-
def
fillInStackTrace(): Throwable
-
def
finalize(): Unit
-
def
formatted(fmtstr: String): String
-
-
final
def
getClass(): Class[_]
-
def
getLocalizedMessage(): String
-
def
getMessage(): String
-
-
-
def
hashCode(): Int
-
-
final
def
isInstanceOf[T0]: Boolean
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
-
-
def
printStackTrace(): Unit
-
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
Deprecated Value Members
-
def
getStackTraceString: String
Error thrown when an undefined behavior in Fatal mode has been detected. This error should never be caught. It indicates a severe programming bug. In Unchecked mode, the program may behave arbitrarily. The
cause
is set to the exception that would have been thrown if the given behavior was in Compliant mode. If your program relies on the proper kind of exception being thrown, as if running on the JVM, you should set the appropriate behavior to Compliant. Note that this will have (potentially major) performance impacts.