programmazione-java/src/CentroRicerca/IllegalPercentageException....

13 lines
233 B
Java

package com.gmail.zurlo.michelef.util;
public class IllegalPercentageException extends RuntimeException {
public IllegalPercentageException() {
}
public IllegalPercentageException(String msg) {
super(msg);
}
}