Add project files.

This commit is contained in:
yawaflua
2024-03-07 18:11:59 +03:00
parent aee40c9686
commit 9f29952f71
19 changed files with 736 additions and 0 deletions

17
Exceptions.cs Normal file
View File

@@ -0,0 +1,17 @@
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) { }
}
}