001    /* Copyright 2000, 2001, Compaq Computer Corporation */
002    
003    package javafe.util;
004    
005    /**
006     * A UsageError is thrown when the command-line arguments are
007     * invalid.
008     */
009    
010    public class UsageError extends java.lang.Exception {
011      private static final long serialVersionUID = 961376577543322857L;
012      
013      /**
014       * Create a <code>UsageError</code> exception.
015       */
016      public UsageError(String s) {
017        super(s);
018      }
019    }