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

com.perimeterx.models.exceptions.PXException Maven / Gradle / Ivy

There is a newer version: 6.13.0
Show newest version
package com.perimeterx.models.exceptions;

/**
 * PerimeterX Exception
 * 

* Created by shikloshi on 05/07/2016. */ public class PXException extends Exception { public PXException(Throwable cause) { super(cause); } public PXException(String message) { super(message); } public PXException(String message, Throwable cause) { super(message, cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy