FileDocCategorySizeDatePackage
PositiveMoney.javaAPI DocExample410Thu Nov 08 00:23:12 GMT 2001com.ora.rmibook.chapter17.better.valueobjects

PositiveMoney

public class PositiveMoney extends Money

Fields Summary
Constructors Summary
public PositiveMoney(Integer cents)

        this (cents.intValue());
    
public PositiveMoney(int cents)

        super (cents);
        if (_cents <= 0) {
            throw new Exception("Bad Value for Money");
        }
        return;
    
Methods Summary