Files
Pilz/Pilz.Simple3DFileParser/Other/Exceptions.cs
2020-09-24 11:21:53 +02:00

15 lines
270 B
C#

using System;
namespace Pilz.S3DFileParser.Exceptions
{
public class MaterialException : Exception
{
public MaterialException() : base()
{
}
public MaterialException(string message) : base(message)
{
}
}
}