Open vikramsubramanian opened 8 months ago
ExceptionFormatter
to allow setting the default value.public class ExceptionFormatter {
private int defaultValue = 128; // Default value for some property
public ExceptionFormatter() {
// Constructor code
}
public void setDefaultValue(int newValue) {
this.defaultValue = newValue;
}
}
I've found on ExceptionFormatter class that it sets a default to 128. I couln't get a clue about some way to set it. )