Projekt

Obecné

Profil

Stáhnout (326 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 e37f5a26 Vojtěch Bartička
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
7
namespace RestAPI.Exceptions
8
{
9
    public class BadRequestException : Exception
10
    {
11
        public BadRequestException() { }
12
        public BadRequestException(string message) : base(message) { }
13
    }
14
}