JITError

public enum JITError : Error, CustomStringConvertible

JITError represents the different kinds of errors the JIT compiler can throw.

  • A generic error thrown by the JIT during exceptional circumstances.

    In general, it is not safe to catch and continue after this exception has been thrown.

    Declaration

    Swift

    case generic(String)
  • Declaration

    Swift

    public var description: String { get }