source: trunk/hiptop/RetroStatus/dgs/libs/hipfloat/hipfloatError.java@ 207

Last change on this file since 207 was 207, checked in by Nicholas Riley, 18 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 
1package 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
8public 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.