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.
 
 
 

25 lines
497 B

using System;
namespace Avalonia;
public class RenderTargetNotReadyException : Exception
{
public RenderTargetNotReadyException()
{
}
public RenderTargetNotReadyException(string message)
: base(message)
{
}
public RenderTargetNotReadyException(Exception innerException)
: base(null, innerException)
{
}
public RenderTargetNotReadyException(string message, Exception innerException)
: base(message, innerException)
{
}
}