/// <summary>
 /// Initializes a new instance of the <see cref="GlyphMissingException"/> class.
 /// </summary>
 /// <param name="codePoint">The code point for the glyph we where unable to find.</param>
 public GlyphMissingException(CodePoint codePoint)
     : base($"Cannot find a glyph for the code point '{codePoint.ToDebuggerDisplay()}'")
 {
 }