All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mx.path.model.mdx.web.WebPathRequestSerializationException Maven / Gradle / Ivy

There is a newer version: 16.0.0
Show newest version
package com.mx.path.model.mdx.web;

import com.mx.path.core.common.accessor.PathResponseStatus;
import com.mx.path.core.common.serialization.PathRequestSerializableException;

public class WebPathRequestSerializationException extends PathRequestSerializableException {
  public WebPathRequestSerializationException(String originalType, Throwable cause) {
    super();
    super.initCause(cause);
    this.setOriginalType(originalType);
    this.setStatus(PathResponseStatus.BAD_REQUEST);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy