mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
28 lines
No EOL
880 B
C#
28 lines
No EOL
880 B
C#
using System;
|
|
|
|
#region " © Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar"
|
|
|
|
// Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com.
|
|
|
|
#endregion
|
|
|
|
namespace FileHelpers
|
|
{
|
|
/// <summary>Indicates the wrong usage of the library.</summary>
|
|
public class BadUsageException : FileHelpersException
|
|
{
|
|
/// <summary>Creates an instance of an BadUsageException.</summary>
|
|
/// <param name="message">The exception Message</param>
|
|
protected internal BadUsageException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
// /// <summary>Creates an instance of an BadUsageException.</summary>
|
|
// /// <param name="message">The exception Message</param>
|
|
// /// <param name="innerEx">The inner exception.</param>
|
|
// protected internal BadUsageException(string message, Exception innerEx) : base(message, innerEx)
|
|
// {
|
|
// }
|
|
|
|
}
|
|
} |