// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using SixLabors.Fonts.Unicode;
namespace SixLabors.Fonts {
///
/// Exception for detailing missing font families.
///
///
public class GlyphMissingException : FontException
{
///
/// Initializes a new instance of the class.
///
/// The code point for the glyph we where unable to find.
public GlyphMissingException(CodePoint codePoint)
: base($"Cannot find a glyph for the code point '{codePoint.ToDebuggerDisplay()}'")
{
}
}
}