Procházet zdrojové kódy

add exception class.

master
Savorboard před 7 roky
rodič
revize
123a3bbe3c
1 změnil soubory, kde provedl 12 přidání a 0 odebrání
  1. +12
    -0
      src/DotNetCore.CAP/Internal/MethodBindException.cs

+ 12
- 0
src/DotNetCore.CAP/Internal/MethodBindException.cs Zobrazit soubor

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

Načítá se…
Zrušit
Uložit