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.")
|
|
{
|
|
}
|
|
}
|
|
}
|