﻿using System;

/// <summary>
///     Exceptions thrown by the Playtomic API.
/// </summary>
[Serializable]
public class PlaytomicException : ServerException
{
    public PlaytomicException(string message = "", Exception inner = null)
        : base(message, inner)
    {
    }
}