/*
* Copyright (c) 2006-2011 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/ /*...*/ |
||
5 | package orderMngr.domain.order; |
|
7 | public final class InvalidOrderItem extends Exception |
|
8 | { |
|
9 | public InvalidOrderItem(String message) |
|
10 | { |
|
11 | 2 | super(message); |
12 | 2 | } |
13 | } |