KingfisherError

public enum KingfisherError: Int

The code of errors which ImageDownloader might encountered.

  • badData: The downloaded data is not an image or the data is corrupted.

    Declaration

    Swift

    case badData = 10000
  • notModified: The remote server responsed a 304 code. No image data downloaded.

    Declaration

    Swift

    case notModified = 10001
  • notCached: The image rquested is not in cache but .onlyFromCache is activated.

    Declaration

    Swift

    case notCached = 10003