File: System\Drawing\Printing\InvalidPrinterException.cs
Web Access
Project: src\src\System.Drawing.Common\src\System.Drawing.Common.csproj (System.Drawing.Common)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Security;
 
namespace System.Drawing.Printing;
 
/// <summary>
///  Represents the exception that is thrown when trying to access a printer using invalid printer settings.
/// </summary>
[Serializable]
public partial class InvalidPrinterException : SystemException
{
    /// <summary>
    ///  Initializes a new instance of the <see cref='InvalidPrinterException'/> class.
    /// </summary>
    public InvalidPrinterException(PrinterSettings settings) : base(GenerateMessage(settings))
    {
    }
 
    private static string GenerateMessage(PrinterSettings settings)
    {
        if (settings.IsDefaultPrinter)
        {
            return SR.InvalidPrinterException_NoDefaultPrinter;
        }
        else
        {
            try
            {
                return SR.Format(SR.InvalidPrinterException_InvalidPrinter, settings.PrinterName);
            }
            catch (SecurityException)
            {
                return SR.Format(SR.InvalidPrinterException_InvalidPrinter, SR.CantTellPrinterName);
            }
        }
    }
}