DEV Community

Mahir Xalilov
Mahir Xalilov

Posted on

BL Exceptions

public class FileNotSupportedException : Exception
{
public FileNotSupportedException(string mes) : base(mes)
{

 }
Enter fullscreen mode Exit fullscreen mode

}

public class ItemNotFoundException : Exception
{
public ItemNotFoundException(string mes) : base(mes)
{

 }
Enter fullscreen mode Exit fullscreen mode

}

public class OperationNotValidException : Exception
{
public OperationNotValidException(string mes) : base(mes)
{

 }
Enter fullscreen mode Exit fullscreen mode

}

Top comments (0)