ArithmeticException.cs 500 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.ArithmeticException.cs
  3. //
  4. // Author:
  5. // Joe Shaw ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System {
  10. public class ArithmeticException : SystemException {
  11. // Constructors
  12. public ArithmeticException ()
  13. : base ("The arithmetic operation is not allowed")
  14. {
  15. }
  16. public ArithmeticException (string message)
  17. : base (message)
  18. {
  19. }
  20. public ArithmeticException (string message, Exception inner)
  21. : base (message, inner)
  22. {
  23. }
  24. }
  25. }