using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Model { public class ApiException : System.Exception { public ApiException() : base() { } public ApiException(string message) : base(message) { } public ApiException(string message, System.Exception innerException) : base(message, innerException) { } } }