Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

ZimLuck / OpriPdfExport

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • OpriPdfExport
  • PdfExportOpri
  • Common
  • BaseException.cs
  • zim78's avatar
    no message · df44949d
    zim78 committed Mar 07, 2022
    df44949d Browse Files
BaseException.cs 344 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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;
        }
    }
}