2022-04-23 06:08:53 +08: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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2022-04-23 06:08:53 +08:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
|
|
|
public class UnsupportedSkinComponentException : Exception
|
|
|
|
{
|
|
|
|
public UnsupportedSkinComponentException(ISkinComponent component)
|
2022-04-25 18:06:47 +08:00
|
|
|
: base($@"Unsupported component type: {component.GetType()} (lookup: ""{component.LookupName}"").")
|
2022-04-23 06:08:53 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|