#nullable enable
namespace Terminal.Gui;
///
/// Represents an exception that is thrown when a layout operation fails.
///
[Serializable]
public class LayoutException : Exception
{
///
/// Creates a new instance of .
///
public LayoutException () { }
///
/// Creates a new instance of .
///
///
public LayoutException (string? message) : base (message) { }
///
/// Creates a new instance of .
///
///
///
public LayoutException (string? message, Exception? innerException)
: base (message, innerException)
{ }
}