BaseException.cs
344 Bytes
using System;
using Zircon.Base.Exceptions;
namespace PdfExportOpri.Common
{
public class BaseException : HttpException
{
public void SetException(int code, string number, string message)
{
this.HttpCode = code;
this.Number = number;
this.ErrorMessage = message;
}
}
}