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 05:11:41 +00:00
|
|
|
public UnsupportedSkinComponentException(ISkinLookup lookup)
|
|
|
|
: base($@"Unsupported component type: {lookup.GetType()} (lookup: ""{lookup.LookupName}"").")
|
2022-04-22 22:08:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|