mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
增加RingChart环形图
This commit is contained in:
20
Runtime/Internal/APIException.cs
Normal file
20
Runtime/Internal/APIException.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
/******************************************/
|
||||
/* */
|
||||
/* 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) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user