c

scala.tools.nsc.util

FailedInterrupt

class FailedInterrupt extends Exception

Source
InterruptReq.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FailedInterrupt
  2. Exception
  3. Throwable
  4. Serializable
  5. AnyRef
  6. Any
Implicitly
  1. by StackTraceOps
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FailedInterrupt(cause: Throwable)

Value Members

  1. final def addSuppressed(arg0: java.lang.Throwable): Unit
    Definition Classes
    Throwable
  2. def fillInStackTrace(): java.lang.Throwable
    Definition Classes
    Throwable
  3. def getCause(): java.lang.Throwable
    Definition Classes
    Throwable
  4. def getLocalizedMessage(): String
    Definition Classes
    Throwable
  5. def getMessage(): String
    Definition Classes
    Throwable
  6. def getStackTrace(): Array[StackTraceElement]
    Definition Classes
    Throwable
  7. final def getSuppressed(): Array[java.lang.Throwable]
    Definition Classes
    Throwable
  8. def initCause(arg0: java.lang.Throwable): java.lang.Throwable
    Definition Classes
    Throwable
  9. def printStackTrace(arg0: PrintWriter): Unit
    Definition Classes
    Throwable
  10. def printStackTrace(arg0: PrintStream): Unit
    Definition Classes
    Throwable
  11. def printStackTrace(): Unit
    Definition Classes
    Throwable
  12. def setStackTrace(arg0: Array[StackTraceElement]): Unit
    Definition Classes
    Throwable
  13. def stackTracePrefixString(p: (StackTraceElement) => Boolean): String

    Format the stack trace, returning the prefix consisting of frames that satisfy a given predicate.

    Format the stack trace, returning the prefix consisting of frames that satisfy a given predicate. The format is similar to the typical case described in the Javadoc for java.lang.Throwable#printStackTrace()*. If a stack trace is truncated, it will be followed by a line of the form ... 3 elided, by analogy to the lines ... 3 more which indicate shared stack trace segments.

    p

    the predicate to select the prefix

    Implicit
    This member is added by an implicit conversion from FailedInterrupt toStackTraceOps performed by method StackTraceOps in scala.tools.nsc.util.
    Definition Classes
    StackTraceOps
  14. def stackTracePrefixString(e: Throwable)(p: (StackTraceElement) => Boolean): String

    Format a stack trace, returning the prefix consisting of frames that satisfy a given predicate.

    Format a stack trace, returning the prefix consisting of frames that satisfy a given predicate.

    The format is similar to the typical case described in the Javadoc for java.lang.Throwable#printStackTrace()*. If a stack trace is truncated, it will be followed by a line of the form ... 3 elided, by analogy to the lines ... 3 more which indicate shared stack trace segments.

    e

    the exception

    p

    the predicate to select the prefix

    Implicit
    This member is added by an implicit conversion from FailedInterrupt toStackTraceOps performed by method StackTraceOps in scala.tools.nsc.util.
    Definition Classes
    StackTracing
  15. def toString(): String
    Definition Classes
    Throwable → AnyRef → Any