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

net.digitalid.utility.conversion.exceptions.RecoveryExceptionSubclass Maven / Gradle / Ivy

The newest version!
package net.digitalid.utility.conversion.exceptions;

import javax.annotation.Generated;
import javax.annotation.Nullable;

@SuppressWarnings("null")
@Generated(value = "net.digitalid.utility.processor.generator.JavaFileGenerator")
class RecoveryExceptionSubclass extends RecoveryException {
    
    /* -------------------------------------------------- Message -------------------------------------------------- */
    
    private final String message;
    
    @Override
    public String getMessage() {
        String result = this.message;
        return result;
    }
    
    /* -------------------------------------------------- Cause -------------------------------------------------- */
    
    private final @Nullable Throwable cause;
    
    @Override
    public @Nullable Throwable getCause() {
        @Nullable Throwable result = this.cause;
        return result;
    }
    
    /* -------------------------------------------------- Constructors -------------------------------------------------- */
    
    RecoveryExceptionSubclass(String message, @Nullable Throwable cause) {
        super();
        
        this.message = message;
        this.cause = cause;
    }
    
    /* -------------------------------------------------- Overridden Methods -------------------------------------------------- */
    
    @Override
    public String getSummary() {
        String result = super.getSummary();
        return result;
    }
    
    /* -------------------------------------------------- Implement Methods -------------------------------------------------- */
    
    /* -------------------------------------------------- Generated Methods -------------------------------------------------- */
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy