
com.capitalone.dashboard.util.UnsafeDeleteException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.util;
/**
* Created by jkc on 1/20/16.
*/
public class UnsafeDeleteException extends RuntimeException {
private static final long serialVersionUID = -664077740219817001L;
public UnsafeDeleteException() {
super();
}
public UnsafeDeleteException(String s) {
super(s);
}
public UnsafeDeleteException(String s, Throwable throwable) {
super(s, throwable);
}
public UnsafeDeleteException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy