org.chromium.sdk/src/org/chromium/sdk/internal/protocolparser/JsonProtocolModelParseException.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.protocolparser;
       
     6 
       
     7 /**
       
     8  * Signals that JSON model has some problem in it.
       
     9  */
       
    10 public class JsonProtocolModelParseException extends Exception {
       
    11   public JsonProtocolModelParseException() {
       
    12     super();
       
    13   }
       
    14   public JsonProtocolModelParseException(String message, Throwable cause) {
       
    15     super(message, cause);
       
    16   }
       
    17   public JsonProtocolModelParseException(String message) {
       
    18     super(message);
       
    19   }
       
    20   public JsonProtocolModelParseException(Throwable cause) {
       
    21     super(cause);
       
    22   }
       
    23 }