1 package com.tapina.robe.runtime;
2
3 /***
4 * Created by IntelliJ IDEA.
5 * User: gareth
6 * Date: Sep 1, 2003
7 * Time: 7:59:23 AM
8 */
9 public final class AddressException extends RuntimeException {
10 public AddressException(int address) {
11 super("Address Exception at &" + Integer.toHexString(address));
12 }
13 }