8 lines
137 B
C#
8 lines
137 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace LANCommander.SDK.Exceptions;
|
||
|
|
|
||
|
|
public class InvalidAddressException(string message) : Exception(message)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|