00001 /* 00002 * Copyright (c) 2008, AIST, the University of Tokyo and General Robotix Inc. 00003 * All rights reserved. This program is made available under the terms of the 00004 * Eclipse Public License v1.0 which accompanies this distribution, and is 00005 * available at http://www.eclipse.org/legal/epl-v10.html 00006 * Contributors: 00007 * General Robotix Inc. 00008 * National Institute of Advanced Industrial Science and Technology (AIST) 00009 */ 00016 package com.generalrobotix.ui.view.graph; 00017 00018 @SuppressWarnings("serial") 00019 public class LogFileOutputException extends Exception { 00025 public LogFileOutputException() { 00026 super(); 00027 } 00028 00029 public LogFileOutputException(String str) { 00030 super(str); 00031 } 00032 }