Upload files to "java/expression"

This commit is contained in:
2026-04-13 10:50:54 +03:00
parent d6e1e5893f
commit a373740014
5 changed files with 209 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package expression;
/**
* @author Doschennikov Nikita (me@fymio.us)
*/
public class OverflowException extends ArithmeticException {
public OverflowException(String operation) {
super("overflow in " + operation);
}
}