1
0
Fork 0
vrobot3/Source/Exceptions.cs

32 lines
752 B
C#

//-----------------------------------------------------------------------------
//
// Copyright © 2016 Project Golan
//
// See "LICENSE" for more information.
//
//-----------------------------------------------------------------------------
//
// Exception types.
//
//-----------------------------------------------------------------------------
using System;
namespace ProjectGolan.Vrobot3
{
//
// CommandArgumentException
//
public class CommandArgumentException : Exception
{
public CommandArgumentException() {}
public CommandArgumentException(String message) : base(message) {}
public CommandArgumentException(String message, Exception inner) :
base(message, inner)
{
}
}
}
// EOF