Skip to content

Commit 113f505

Browse files
committed
Added default constructor
While not strictly necessary for our needs, this is generally expected for exceptions, and recommended by Visual Studio's Code Analysis.
1 parent ee7de38 commit 113f505

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Ignia.Topics/Repositories/TopicRepositoryException.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ public class TopicRepositoryException : DbException {
2929
/*==========================================================================================================================
3030
| CONSTRUCTOR: TAXONOMY DELETE EVENT ARGS
3131
\-------------------------------------------------------------------------------------------------------------------------*/
32+
/// <summary>
33+
/// Initializes a new <see cref="TopicRepositoryException" /> instance.
34+
/// </summary>
35+
/// <param name="message">The message to display for this exception.</param>
36+
public TopicRepositoryException() : base() { }
37+
3238
/// <summary>
3339
/// Initializes a new <see cref="TopicRepositoryException" /> instance with a specific error message.
3440
/// </summary>

0 commit comments

Comments
 (0)