mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
21 lines
468 B
C#
21 lines
468 B
C#
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) { }
|
|
}
|
|
}
|