15 lines
275 B
C#
15 lines
275 B
C#
using System;
|
|
|
|
namespace Pilz.Reflection.PluginSystem
|
|
{
|
|
public class PluginLoadException : Exception
|
|
{
|
|
public PluginLoadException() : base()
|
|
{
|
|
}
|
|
|
|
public PluginLoadException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
} |