JITError

public enum JITError: Error, CustomStringConvertible

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

  • The JIT was unable to be initialized. A message is provided explaining the failure.

    Declaration

    Swift

    case couldNotInitialize(String)
  • The JIT was unable to remove the provided module. A message is provided explaining the failure

    Declaration

    Swift

    case couldNotRemoveModule(Module, String)
  • A human-readable description of the error.

    Declaration

    Swift

    public var description: String