com.fireflysource.common.exception.UnsupportedOperationException Maven / Gradle / Ivy
The newest version!
package com.fireflysource.common.exception;
/**
* @author Pengtao Qiu
*/
public class UnsupportedOperationException extends RuntimeException {
public UnsupportedOperationException() {
}
public UnsupportedOperationException(String message) {
super(message);
}
}