mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-16 12:30:18 +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)
|
|
{
|
|
}
|
|
}
|
|
} |