All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.base.devserver.themeeditor.utils.ThemeEditorException Maven / Gradle / Ivy

There is a newer version: 24.6.2
Show newest version
package com.vaadin.base.devserver.themeeditor.utils;

public class ThemeEditorException extends RuntimeException {
    public ThemeEditorException() {
    }

    public ThemeEditorException(String message) {
        super(message);
    }

    public ThemeEditorException(String message, Throwable cause) {
        super(message, cause);
    }

    public ThemeEditorException(Throwable cause) {
        super(cause);
    }

    public ThemeEditorException(String message, Throwable cause,
            boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy