32 lines
588 B
C#
32 lines
588 B
C#
using BS.Shared.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Exceptions
|
|
{
|
|
public class BeWoInvalidOperationException : InvalidOperationException
|
|
{
|
|
public BeWoInvalidOperationException() : base()
|
|
{
|
|
|
|
}
|
|
|
|
public BeWoInvalidOperationException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public BeWoInvalidOperationException(AppError appError) : base(appError.Displayname)
|
|
{
|
|
|
|
}
|
|
|
|
public BeWoInvalidOperationException(AppError appError, Exception innerException)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|