mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 17:35:33 +00:00
10 lines
171 B
Forth
10 lines
171 B
Forth
|
namespace UnicornManaged
|
||
|
|
||
|
open System
|
||
|
|
||
|
type UnicornEngineException(errNo: Int32, msg: String) =
|
||
|
inherit ApplicationException(msg)
|
||
|
|
||
|
member this.ErrorNo = errNo
|
||
|
|