001    // License: GPL. For details, see LICENSE file.
002    package org.openstreetmap.josm.plugins;
003    
004    public class PluginListParseException extends Exception {
005        public PluginListParseException() {
006            super();
007        }
008    
009        public PluginListParseException(String arg0, Throwable arg1) {
010            super(arg0, arg1);
011        }
012    
013        public PluginListParseException(String arg0) {
014            super(arg0);
015        }
016    
017        public PluginListParseException(Throwable arg0) {
018            super(arg0);
019        }
020    }