mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
21 lines
482 B
C#
21 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DrumKit.Repository
|
|
{
|
|
class RepositoryException : Exception
|
|
{
|
|
public RepositoryException() :
|
|
base() { }
|
|
|
|
public RepositoryException(string message) :
|
|
base(message) { }
|
|
|
|
public RepositoryException(string message, Exception innerException) :
|
|
base(message, innerException) { }
|
|
}
|
|
}
|