EchoTex_Payroll/Ease.Core/Model/ServiceException.cs

44 lines
1.3 KiB
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
/*
|-------------------------------------------------------------------------------|
| Copyright © Computer Ease Limited |
| Address: 1/9 Bloack-A Lalmatia, Dhaka-1207, Bangladesh |
| Email: info@celimited.com, cease@bol-online.com, web: www.celimited.com |
| Unauthorized copy or distribution is strictly prohibited |
| Special thanks to Asif Ahamed Siddiqui |
| Author: S. M. Russel, Last modified date: 128/12/2007 |
|-------------------------------------------------------------------------------|
*/
using System;
using System.Runtime.Serialization;
namespace Ease.Core.Model
{
#region Framework: Service Exception Object
public class ServiceException : ApplicationException
{
public ServiceException() : base()
{
}
public ServiceException(string message) : base(message)
{
}
public ServiceException(string message, Exception inner) : base(message, inner)
{
}
public ServiceException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData(info, context);
}
}
#endregion
}