osu/osu.Game/Online/API/APIException.cs

16 lines
407 B
C#
Raw Normal View History

2023-06-22 16:37:25 +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
{
2023-06-24 14:07:01 +00:00
public APIException(string message, Exception? innerException)
2021-12-10 05:04:31 +00:00
: base(message, innerException)
{
}
}
}