drumkit-old/DrumKit/Controller/ControllerException.cs

21 lines
468 B
C#
Raw Normal View History

2013-11-18 18:11:53 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DrumKit
{
class ControllerException : Exception
{
public ControllerException() :
base() { }
public ControllerException(string message) :
base(message) { }
public ControllerException(string message, Exception innerException) :
base(message, innerException) { }
}
}