11 lines
No EOL
195 B
C#
11 lines
No EOL
195 B
C#
using System;
|
|
|
|
namespace LANCommander.SDK.Exceptions;
|
|
|
|
public class DepotNoResultsException : Exception
|
|
{
|
|
public DepotNoResultsException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
} |