Skip to content

Commit c47ee9b

Browse files
committed
Add an application-specific exception.
1 parent 5a33610 commit c47ee9b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace CompanyName.Notebook.NoteTaking.Core.Application.Exceptions
2+
{
3+
using System;
4+
5+
public class NoteTakerException : Exception
6+
{
7+
public NoteTakerException(string message, Exception innerException=null)
8+
:base(message, innerException) { }
9+
}
10+
}

0 commit comments

Comments
 (0)