mirror of
https://github.com/chylex/Code-Statistics.git
synced 2025-07-19 21:04:36 +02: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){}
|
|
}
|
|
}
|