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