|
- using System;
- using System.Runtime.Serialization;
-
- namespace TechbloxModdingAPI
- {
- public class TechbloxModdingAPIException : Exception
- {
- public TechbloxModdingAPIException()
- {
- }
-
- public TechbloxModdingAPIException(string message) : base(message)
- {
- }
-
- public TechbloxModdingAPIException(string message, Exception innerException) : base(message, innerException)
- {
- }
-
- protected TechbloxModdingAPIException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- }
- }
|