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