浏览代码

add exception class.

master
Savorboard 7 年前
父节点
当前提交
123a3bbe3c
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. +12
    -0
      src/DotNetCore.CAP/Internal/MethodBindException.cs

+ 12
- 0
src/DotNetCore.CAP/Internal/MethodBindException.cs 查看文件

@@ -0,0 +1,12 @@
using System;

namespace DotNetCore.CAP.Internal
{
[Serializable]
public class MethodBindException : Exception
{
public MethodBindException() { }
public MethodBindException(string message) : base(message) { }
public MethodBindException(string message, Exception inner) : base(message, inner) { }
}
}

正在加载...
取消
保存