2
0

InvalidPrinterExecption.cs 794 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // System.Drawing.InvalidPrinterExecption.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc
  8. //
  9. using System;
  10. using System.Runtime.Serialization;
  11. namespace System.Drawing.Printing
  12. {
  13. /// <summary>
  14. /// Summary description for InvalidPrinterExecption.
  15. /// </summary>
  16. public class InvalidPrinterException : SystemException {
  17. private PrinterSettings settings;
  18. public InvalidPrinterException(PrinterSettings settings) {
  19. this.settings = settings;
  20. }
  21. protected InvalidPrinterException(SerializationInfo info, StreamingContext context) {
  22. throw new NotImplementedException ();
  23. }
  24. public override void GetObjectData(SerializationInfo info, StreamingContext context) {
  25. throw new NotImplementedException ();
  26. }
  27. }
  28. }