FormatException.cs 455 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.FormatException.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 FormatException : SystemException {
  11. // Constructors
  12. public FormatException ()
  13. : base ("Invalid format")
  14. {
  15. }
  16. public FormatException (string message)
  17. : base (message)
  18. {
  19. }
  20. public FormatException (string message, Exception inner)
  21. : base (message, inner)
  22. {
  23. }
  24. }
  25. }