OperationError

public enum OperationError : Error

Errors caused by failing operations.

  • An operation to create something was performed when that something already existed.

    Declaration

    Swift

    case alreadyExists
  • An operation to remove something was performed when that something didn’t exist. Similar to nil.

    Declaration

    Swift

    case missing