10 lines
249 B
C#
10 lines
249 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Wino.Core.Domain.Exceptions
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// An exception thrown when the background task registration is failed.
|
|||
|
|
/// </summary>
|
|||
|
|
public class BackgroundTaskRegistrationFailedException : Exception { }
|
|||
|
|
}
|