// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; namespace osu.Game.Utils { /// /// Log to sentry without showing an error notification to the user. /// /// /// This can be used to convey important diagnostics to us developers without /// getting in the user's way. Should be used sparingly. internal class SentryOnlyDiagnosticsException : Exception { public SentryOnlyDiagnosticsException(string message) : base(message) { } } }