Error

public enum Error : Swift.Error

Possible errors that could be thrown by this class.

  • Thrown when replacing a class by a class that is not a subclass of the original class.

    Declaration

    Swift

    case replacingClassNotASubclass
  • Thrown when a fatal license error occurs which will purposely crash your app, e.g., when the license validation failed.

    Declaration

    Swift

    case licenseFatalError(String)
  • Thrown when a license error occurs, e.g., while loading or parsing the license.

    Declaration

    Swift

    case licenseError(String)
  • Thrown when a license warning occurs, e.g., when an expired trial license will enable the watermark mode.

    Declaration

    Swift

    case licenseWarning(String)