7 lines
122 B
C#
7 lines
122 B
C#
using System;
|
|
|
|
namespace JiShe.CollectBus.Exceptions
|
|
{
|
|
public class CloseException(string msg) : Exception(msg);
|
|
}
|