9 lines
231 B
C#
9 lines
231 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 { }
|