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

net.digitalid.utility.contracts.exceptions.PreconditionExceptionSubclass Maven / Gradle / Ivy

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

import javax.annotation.Generated;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy