瀏覽代碼

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) { }
}
}

Loading…
取消
儲存