コード例 #1
0
ファイル: Exceptions.cs プロジェクト: tmpkus/openvss
 public NolmeOutOfBoundsException(int badValue, int minimumValue, int maximumValue, string additionalText)
 {
     throw new NolmeException(NolmeOutOfBoundsException.CreateMessage(badValue, minimumValue, maximumValue, additionalText));
 }
コード例 #2
0
ファイル: Exceptions.cs プロジェクト: tmpkus/openvss
 public NolmeOutOfBoundsException(int badValue)
 {
     throw new NolmeException(NolmeOutOfBoundsException.CreateMessage(badValue, null));
 }