Beispiel #1
0
 public NolmeOutOfBoundsException(int badValue, int minimumValue, int maximumValue, string additionalText)
 {
     throw new NolmeException(NolmeOutOfBoundsException.CreateMessage(badValue, minimumValue, maximumValue, additionalText));
 }
Beispiel #2
0
 public NolmeOutOfBoundsException(int badValue)
 {
     throw new NolmeException(NolmeOutOfBoundsException.CreateMessage(badValue, null));
 }