
com.exasol.errorcodecrawlermavenplugin.Finding Maven / Gradle / Ivy
package com.exasol.errorcodecrawlermavenplugin;
/**
* This class represents issues with the error codes.
*/
public class Finding {
private final String message;
/**
* Create a new instance of {@link Finding}.
*
* @param message message of the finding.
*/
public Finding(final String message) {
this.message = message;
}
/**
* Get the message of this finding.
*
* @return message
*/
public String getMessage() {
return this.message;
}
@Override
public String toString() {
return "Finding{" + "message='" + this.message + '\'' + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy