mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-01-17 02:04:32 -05:00
15 lines
289 B
C#
15 lines
289 B
C#
namespace JWLMergeCLI.Exceptions
|
|
{
|
|
using System;
|
|
|
|
[Serializable]
|
|
// ReSharper disable once InconsistentNaming
|
|
public class JWLMergeCLIException : Exception
|
|
{
|
|
public JWLMergeCLIException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|