Sign in

ECS / WCS_LiuzhouZhituo · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • WCS_LiuzhouZhituo
  • HHECS.Model
  • BLLModel
  • BllException.cs
  • 逻辑处理整体框架,修改了设备属性同步等几处bug
    61ec6ce9
    liufu authored
    2018-11-16 15:51:09 +0800  
    Browse Code »
BllException.cs 464 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model
{
    [Serializable]
    public class BllException : ApplicationException
    {
        public BllException()
        {
        }
        public BllException(string message) : base(message)
        {
        }
        public BllException(string message, Exception inner) : base(message, inner)
        {
        }
    }
}