mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 21:40:41 +00:00
20 lines
737 B
C#
20 lines
737 B
C#
|
|
/******************************************/
|
||
|
|
/* */
|
||
|
|
/* Copyright (c) 2018 monitor1394 */
|
||
|
|
/* https://github.com/monitor1394 */
|
||
|
|
/* */
|
||
|
|
/******************************************/
|
||
|
|
|
||
|
|
|
||
|
|
namespace XCharts
|
||
|
|
{
|
||
|
|
public class APIException : System.Exception
|
||
|
|
{
|
||
|
|
public APIException() { }
|
||
|
|
public APIException(string message) : base(message) { }
|
||
|
|
public APIException(string message, System.Exception inner) : base(message, inner) { }
|
||
|
|
protected APIException(
|
||
|
|
System.Runtime.Serialization.SerializationInfo info,
|
||
|
|
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
||
|
|
}
|
||
|
|
}
|