| 123456789101112131415161718192021222324252627282930 |
- //
- // System.Drawing.InvalidPrinterExecption.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- using System.Runtime.Serialization;
- namespace System.Drawing.Printing
- {
- /// <summary>
- /// Summary description for InvalidPrinterExecption.
- /// </summary>
- public class InvalidPrinterExecption : SystemException {
- private PrinterSettings settings;
- public InvalidPrinterExecption(PrinterSettings settings) {
- this.settings = settings;
- }
- protected InvalidPrinterExecption(SerializationInfo info, StreamingContext context) {
- throw new NotImplementedException ();
- }
- public override void GetObjectData(SerializationInfo info, StreamingContext context) {
- throw new NotImplementedException ();
- }
- }
- }
|