001package com.ericlam.mc.eldgui; 002 003/** 004 * 找不到 Controller 時抛出的異常。詳見 {@link InventoryService#getUIDispatcher(String)} 005 */ 006public class UINotFoundException extends Exception { 007 public UINotFoundException(String message) { 008 super(message); 009 } 010}