source: josm/trunk/src/org/openstreetmap/josm/io/OfflineAccessException.java@ 13608

Last change on this file since 13608 was 7937, checked in by bastiK, 9 years ago

add subversion property svn:eol=native

  • Property svn:eol-style set to native
File size: 459 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4/**
5 * Exception thrown when an online resource is accessed while in offline mode.
6 * @since 7434
7 */
8public class OfflineAccessException extends IllegalStateException {
9
10 /**
11 * Constructs a new {@code OfflineAccessException}.
12 * @param s the String that contains a detailed message
13 */
14 public OfflineAccessException(String s) {
15 super(s);
16 }
17}
Note: See TracBrowser for help on using the repository browser.