Pārlūkot izejas kodu

add exception class.

master
Savorboard pirms 7 gadiem
vecāks
revīzija
123a3bbe3c
1 mainītis faili ar 12 papildinājumiem un 0 dzēšanām
  1. +12
    -0
      src/DotNetCore.CAP/Internal/MethodBindException.cs

+ 12
- 0
src/DotNetCore.CAP/Internal/MethodBindException.cs Parādīt failu

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

Notiek ielāde…
Atcelt
Saglabāt