//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Formats
{
///
/// Represents "recoverable" decoder errors.
///
internal enum DecoderErrorCode
{
///
/// NoError
///
NoError,
///
/// MissingFF00
///
// ReSharper disable once InconsistentNaming
MissingFF00,
///
/// End of stream reached unexpectedly
///
UnexpectedEndOfStream
}
}