org.chromium.sdk/src/org/chromium/sdk/internal/ValueLoadException.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.internal;
       
     6 
       
     7 /**
       
     8  * Signals a problem in loading value from remote, most probably a parsing problem.
       
     9  */
       
    10 public class ValueLoadException extends RuntimeException {
       
    11 
       
    12   public ValueLoadException() {
       
    13   }
       
    14 
       
    15   public ValueLoadException(String message, Throwable cause) {
       
    16     super(message, cause);
       
    17   }
       
    18 
       
    19   public ValueLoadException(String message) {
       
    20     super(message);
       
    21   }
       
    22 
       
    23   public ValueLoadException(Throwable cause) {
       
    24     super(cause);
       
    25   }
       
    26 
       
    27 }