﻿using System;

/// <summary>
///     Called when an exception happens to the API.
/// </summary>
[Serializable]
public class ApiException : Exception
{
    public ApiException(string message = "", Exception inner = null)
        : base(message, inner)
    {
    }
}