com.github.quartzwebui.exception.UnsupportedTranslateException Maven / Gradle / Ivy
The newest version!
/**
* Licensed under the Apache License, Version 2.0 (the "License");
*/
package com.github.quartzwebui.exception;
/**
* 不支持的转换异常
* @author quxiucheng [[email protected]]
*/
public class UnsupportedTranslateException extends RuntimeException {
public UnsupportedTranslateException() {
}
public UnsupportedTranslateException(String message) {
super(message);
}
public UnsupportedTranslateException(String message, Throwable cause) {
super(message, cause);
}
public UnsupportedTranslateException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy