Skip to content

Commit 829c011

Browse files
committed
Rename the custom exception.
1 parent 3898030 commit 829c011

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Core/Application/Exceptions/NoteTakerException.cs renamed to src/Core/Application/Exceptions/NotFoundException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ namespace CompanyName.Notebook.NoteTaking.Core.Application.Exceptions
22
{
33
using System;
44

5-
public class NoteTakerException : Exception
5+
public class NotFoundException : Exception
66
{
7-
public NoteTakerException(string message, Exception innerException=null)
7+
public NotFoundException(string message, Exception innerException=null)
88
:base(message, innerException) { }
99
}
1010
}

0 commit comments

Comments
 (0)