mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-19 14:00:19 +02:00
11 lines
172 B
C#
11 lines
172 B
C#
using System;
|
|
|
|
namespace tar_cs
|
|
{
|
|
public class TarException : Exception
|
|
{
|
|
public TarException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
} |