Last change
on this file was 207, checked in by Nicholas Riley, 19 years ago |
rpn: Brian Swetland's RPN calculator using Dan Sachs's hipfloat
library. Changes for hiptop OS 2.3; some minor UI cleanups.
|
File size:
390 bytes
|
Line | |
---|
1 | package dgs.libs.hipfloat;
|
---|
2 |
|
---|
3 | // Copyright 2003, Daniel Grobe Sachs. All Rights Reserved.
|
---|
4 | // See LICENSE for redistribution terms
|
---|
5 | //
|
---|
6 | // Some algorithms borrowed from GNU BC, but all code was rewritten.
|
---|
7 |
|
---|
8 | public class hipfloatError extends Error
|
---|
9 | {
|
---|
10 | public hipfloatBadNum actual_return;
|
---|
11 | public hipfloatError(String reason, hipfloatBadNum err)
|
---|
12 | {
|
---|
13 | super(reason);
|
---|
14 | actual_return = err;
|
---|
15 | }
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.