mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 12:42:46 +01:00
9 lines
276 B
C#
9 lines
276 B
C#
using System;
|
|
|
|
namespace CodeStatistics.Output{
|
|
class TemplateException : Exception{
|
|
public TemplateException(string message) : base(message){}
|
|
public TemplateException(string message, Exception innerException) : base(message, innerException){}
|
|
}
|
|
}
|