Files
DP44/Common/DTS.Common.Utilities/TextLogger.LogPathnameNotInitializedException.cs

67 lines
2.2 KiB
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
/*
* TextLogger.LogPathnameNotInitializedException.cs
*
* Copyright © 2010
* Diversified Technical Systems, Inc.
* All Rights Reserved.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DTS.Common.Utilities.Logging
{ // ***see TextLogger.cs***
public partial class TextLogger
{
/// <summary>
/// Representation of a failed attempt to convert a "Large" interface data type to one of
/// the smaller data types in the "standard" interface.
/// </summary>
private class LogPathnameNotInitializedException : ApplicationException
{
/// <summary>
/// Initialize an instance of the
/// <see cref="Logging.TextLogger.LogPathnameNotInitializedException"/> class.
/// </summary>
public LogPathnameNotInitializedException()
{
}
/// <summary>
/// Initialize an instance of the
/// <see cref="Logging.TextLogger.LogPathnameNotInitializedException"/> class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message describing this exception instance.
/// </param>
///
public LogPathnameNotInitializedException(string msg)
: base(msg)
{
}
/// <summary>
/// Initialize an instance of the
/// <see cref="Logging.TextLogger.LogPathnameNotInitializedException"/> class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message describing this exception instance.
/// </param>
///
/// <param name="innerEx">
/// The inner <see cref="System.Exception"/> behind this enclosing
/// exception instance.
/// </param>
///
public LogPathnameNotInitializedException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
}
}