2022-04-22 22:08:53 +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.Skinning
|
|
|
|
{
|
|
|
|
public class UnsupportedSkinComponentException : Exception
|
|
|
|
{
|
2022-11-09 07:04:56 +00:00
|
|
|
public UnsupportedSkinComponentException(ISkinComponentLookup lookup)
|
2022-11-09 07:39:33 +00:00
|
|
|
: base($@"Unsupported component type: {lookup.GetType()} (lookup: ""{lookup}"").")
|
2022-04-22 22:08:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|