com.nepxion.matrix.proxy.exception.ProxyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matrix-aop Show documentation
Show all versions of matrix-aop Show documentation
Nepxion Matrix is an AOP framework integrated with Spring AutoProxy, Spring Registrar and Spring Import Selector
package com.nepxion.matrix.proxy.exception;
/**
* Title: Nepxion Matrix
* Description: Nepxion Matrix AOP
* Copyright: Copyright (c) 2017-2050
* Company: Nepxion
* @author Haojun Ren
* @version 1.0
*/
public class ProxyException extends RuntimeException {
private static final long serialVersionUID = -5563106933655728813L;
public ProxyException() {
super();
}
public ProxyException(String message) {
super(message);
}
public ProxyException(String message, Throwable cause) {
super(message, cause);
}
public ProxyException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy