RSDResourceTransformerError

public enum RSDResourceTransformerError : Error, CustomNSError

RSDResourceTransformerError is used to support throwing errors when attempting to transform a resource.

  • The bundle could not be found.

    Declaration

    Swift

    case bundleNotFound(String)
  • File not found in the expected bundle.

    Declaration

    Swift

    case fileNotFound(String)
  • The resource type is not supported.

    Declaration

    Swift

    case invalidResourceType(String)
  • The domain of the error.

    Declaration

    Swift

    public static var errorDomain: String { get }
  • The error code within the given domain.

    Declaration

    Swift

    public var errorCode: Int { get }
  • The user-info dictionary.

    Declaration

    Swift

    public var errorUserInfo: [String : Any] { get }