mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-11-09 19:05:05 +08:00
13 lines
260 B
C#
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.")
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|