A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
516 B

using System;
namespace Avalonia
{
/// <summary>
/// Exception signifying an internal logic error in Avalonia.
/// </summary>
public class AvaloniaInternalException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="AvaloniaInternalException"/> class.
/// </summary>
/// <param name="message">The exception message.</param>
public AvaloniaInternalException(string message)
: base(message)
{
}
}
}