org.chromium.sdk/src/org/chromium/sdk/InvalidContextException.java
changeset 2 e4420d2515f1
equal deleted inserted replaced
1:ef76fc2ac88c 2:e4420d2515f1
       
     1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style license that can be
       
     3 // found in the LICENSE file.
       
     4 
       
     5 package org.chromium.sdk;
       
     6 
       
     7 /**
       
     8  * Signals that operation is not available because related {@link DebugContext}
       
     9  * is no more valid. However, there is no guarantee this exception will be thrown
       
    10  * in each case. Note also that {@link DebugContext#continueVm} throws
       
    11  * simple {@link IllegalStateException}.
       
    12  */
       
    13 public class InvalidContextException extends RuntimeException {
       
    14   InvalidContextException() {
       
    15     super();
       
    16   }
       
    17   InvalidContextException(String message, Throwable cause) {
       
    18     super(message, cause);
       
    19   }
       
    20   InvalidContextException(String message) {
       
    21     super(message);
       
    22   }
       
    23   public InvalidContextException(Throwable cause) {
       
    24     super(cause);
       
    25   }
       
    26 }