* @throws RemoteException
*/
public GoodModel(Integer id, String name) throws InvalidUniqueIdException, RemoteException {
super();
if (id <= 0)
throw new InvalidUniqueIdException();
this.id = id;
this.name = name;
this.price = 0.0;
this.available = 0;