Document of c-modernization-kit (calc dotnet wrapper) 1.0.0
Loading...
Searching...
No Matches
CalcException.cs
Go to the documentation of this file.
1#pragma warning disable 1587
17#pragma warning restore 1587
18
19using System;
20
21namespace CalcLib
22{
26 public class CalcException : Exception
27 {
31 public int ErrorCode { get; }
32
38 public CalcException(int errorCode, string message)
39 : base(message)
40 {
41 ErrorCode = errorCode;
42 }
43
50 public CalcException(int errorCode, string message, Exception innerException)
51 : base(message, innerException)
52 {
53 ErrorCode = errorCode;
54 }
55 }
56}
int ErrorCode
ネイティブライブラリから返されたエラーコードを取得します。
CalcException(int errorCode, string message)
CalcException クラスの新しいインスタンスを初期化します。
CalcException(int errorCode, string message, Exception innerException)
CalcException クラスの新しいインスタンスを初期化します。