/*
* 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
{
///
/// Representation of a failed attempt to convert a "Large" interface data type to one of
/// the smaller data types in the "standard" interface.
///
private class LogPathnameNotInitializedException : ApplicationException
{
///
/// Initialize an instance of the
/// class.
///
public LogPathnameNotInitializedException()
{
}
///
/// Initialize an instance of the
/// class.
///
///
///
/// The message describing this exception instance.
///
///
public LogPathnameNotInitializedException(string msg)
: base(msg)
{
}
///
/// Initialize an instance of the
/// class.
///
///
///
/// The message describing this exception instance.
///
///
///
/// The inner behind this enclosing
/// exception instance.
///
///
public LogPathnameNotInitializedException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
}
}