2021-07-19 11:27:00 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API
|
|
|
|
{
|
|
|
|
public class APIException : InvalidOperationException
|
|
|
|
{
|
2021-12-10 05:04:31 +00:00
|
|
|
public APIException(string message, Exception innerException)
|
|
|
|
: base(message, innerException)
|
2021-07-19 11:27:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|