CPF/CPF.Mac/Mac/AppKit/AppKitThreadAccessException.cs
2023-11-21 23:05:03 +08:00

13 lines
260 B
C#

using System;
namespace CPF.Mac.AppKit
{
public class AppKitThreadAccessException : Exception
{
public AppKitThreadAccessException()
: base("AppKit Consistency error: you are calling a method that can only be invoked from the UI thread.")
{
}
}
}