Преглед изворни кода

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…
Откажи
Сачувај