mirror of
https://github.com/yawaflua/Lava.NET.git
synced 2025-12-08 19:39:33 +02:00
18 lines
514 B
C#
18 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Lava.NET.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Sending error when Lava.ru type is not equals your type
|
|
/// </summary>
|
|
public class TypeException : Exception {
|
|
public TypeException(string? message) : base(message) { }
|
|
public TypeException() : base() { }
|
|
public TypeException(string? message, Exception exception) : base(message, exception) { }
|
|
}
|
|
}
|