// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. using System; namespace SixLabors.Fonts { /// /// Base class for exceptions thrown by this library. /// /// public class FontException : Exception { /// /// Initializes a new instance of the class. /// /// The message that describes the error. public FontException(string message) : base(message) { } } }