// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System;
namespace SixLabors.Fonts {
///
/// Exception font loading can throw if it encounters invalid data during font loading.
///
///
public class InvalidFontFileException : Exception
{
///
/// Initializes a new instance of the class.
///
/// The message that describes the error.
public InvalidFontFileException(string message)
: base(message)
{
}
}
}