ln.http/exceptions/UnsupportedMediaTypeExcepti...

21 lines
517 B
C#

// /**
// * File: UnsupportedMediaTypeException.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.http.exceptions
{
public class UnsupportedMediaTypeException : HttpException
{
public UnsupportedMediaTypeException()
: base(415, "Unsupported Media Type")
{
}
}
}