CPF/CPF.Mac/Mac/AppKit/AppKitThreadAccessException.cs

13 lines
260 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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.")
{
}
}
}