furkandeveloper/EasyProfiler

View on GitHub
src/EasyProfiler.Core/Exceptions/BaseException.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;
using System.Collections.Generic;
using System.Text;

namespace EasyProfiler.Core.Exceptions
{
    public class BaseException : Exception
    {
        public BaseException(string message) : base(message)
        {
        }
    }
}