/* * (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#INTERNAL_SERVER_ERROR} (500) **/ public class InternalErrorException extends EvrythngErrorException { private static final long serialVersionUID = 1L; public InternalErrorException(final ErrorMessage message) { super(message); } public InternalErrorException(final ErrorMessage message, final Throwable cause) { super(message, cause); } }