15 lines
270 B
C#
15 lines
270 B
C#
|
|
using System;
|
|||
|
|
namespace Antmicro.OptionsParser
|
|||
|
|
{
|
|||
|
|
public class UnexpectedArgument : IUnexpectedArgument
|
|||
|
|
{
|
|||
|
|
public UnexpectedArgument(string value)
|
|||
|
|
{
|
|||
|
|
Value = value;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string Value { get; private set;}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|