SqlFormatterException.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SQLFormatter
{
    class SqlFormatterException : Exception
    {
        /**
            * 例外のコンストラクタ
            */
        public SqlFormatterException()
            :base()
        {

        }

        /**
            * 例外のコンストラクタ
            * 
            * @param argMessage
            */
        public SqlFormatterException(String argMessage)
            :base(argMessage)
        {

        }
    }
}