10 lines
180 B
C#
10 lines
180 B
C#
using System;
|
|
|
|
namespace ZicMoove
|
|
{
|
|
public class NotIdentifiedException : Exception
|
|
{
|
|
public NotIdentifiedException(string message) : base(message) { }
|
|
}
|
|
}
|
|
|