You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
467 B
35 lines
467 B
using System;
|
|
|
|
namespace mbsh
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CMbshException : System.Exception
|
|
{
|
|
private string eMessage;
|
|
|
|
public CMbshException()
|
|
{
|
|
}
|
|
|
|
public CMbshException(string eMessage)
|
|
{
|
|
this.eMessage = eMessage;
|
|
}
|
|
|
|
public override string Message
|
|
{
|
|
get
|
|
{
|
|
string msg = base.Message;
|
|
if (eMessage != null)
|
|
{
|
|
msg = eMessage;
|
|
}
|
|
|
|
return msg;
|
|
}
|
|
}
|
|
}
|
|
}
|