Version 1.7.4
[gae.git] / java / src / main / com / google / appengine / tools / remoteapi / LoginException.java
blobfab1fef8cb9c51b047c636480cd70bc4f521e575
1 // Copyright 2010 Google Inc. All Rights Reserved.
3 package com.google.appengine.tools.remoteapi;
5 import java.io.IOException;
7 /**
8 * Thrown when there's an error logging in.
11 public class LoginException extends IOException {
12 public LoginException(String s) {
13 super(s);