SAMP.NET/sampdotnet/Core/Exceptions.cs

13 lines
533 B
C#
Raw Normal View History

2022-08-27 17:10:32 +00:00
using System;
2022-08-27 17:16:44 +00:00
namespace SAMP.Core
{
internal class Exceptions
{
// API
public static Exception GameModeInitialized = new Exception("The GmaeMode has already been initialized.");
public static Exception TextDrawDestroyed = new Exception("The TextDraw has been destroyed.");
public static Exception PlayerNotConnected = new Exception("The player isn't connected.");
public static Exception PickupMaxLimit = new Exception("The maximum number of pickups has been exceeded.");
};
};