/* * (c) Copyright Reserved EVRYTHNG Limited 2016. All rights reserved. * Use of this material is subject to license. * Copying and unauthorised use of this material strictly prohibited. */ package com.evrythng.java.wrapper.exception; import com.evrythng.java.wrapper.core.http.Status; import com.evrythng.thng.resource.model.exception.ErrorMessage; /** * {@link Status#REQUEST_ENTITY_TOO_LARGE} (413) */ public class RequestEntityTooLargeException extends EvrythngErrorException { private static final long serialVersionUID = 3659315995335995964L; public RequestEntityTooLargeException(final ErrorMessage message) { super(message); } public RequestEntityTooLargeException(final ErrorMessage message, final Throwable cause) { super(message, cause); } }