1
0
Fork 0
mirror of https://github.com/yuzu-emu/unicorn.git synced 2025-03-31 06:56:55 +00:00
unicorn/bindings/dotnet/UnicornManaged/UnicornEngineException.fs
2016-01-04 11:30:11 +01:00

10 lines
171 B
Forth

namespace UnicornManaged
open System
type UnicornEngineException(errNo: Int32, msg: String) =
inherit ApplicationException(msg)
member this.ErrorNo = errNo