001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.io;
003
004/**
005 * Exception thrown when an online resource is accessed while in offline mode.
006 * @since 7434
007 */
008public class OfflineAccessException extends IllegalStateException {
009
010    /**
011     * Constructs a new {@code OfflineAccessException}.
012     * @param s the String that contains a detailed message
013     */
014    public OfflineAccessException(String s) {
015        super(s);
016    }
017}