com.github.quartzwebui.exception.UnsupportedClassException 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 UnsupportedClassException extends RuntimeException {
public UnsupportedClassException() {
}
public UnsupportedClassException(String message) {
super(message);
}
public UnsupportedClassException(String message, Throwable cause) {
super(message, cause);
}
public UnsupportedClassException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy