9 lines
324 B
C#
9 lines
324 B
C#
namespace SrcMod.Shell.Valve.ObjectModels;
|
|
|
|
public class VdfSerializationException : Exception
|
|
{
|
|
public VdfSerializationException() : base() { }
|
|
public VdfSerializationException(string message) : base(message) { }
|
|
public VdfSerializationException(string message, Exception inner) : base(message, inner) { }
|
|
}
|