blob: 721c2ca0f3e4e7e8aa747e722c5a0c12fa0943d2 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase.internal;
public class VError extends Exception {
String id;
long actionCode;
String message;
String stack;
public String toString() {
return String.format("{\n id: \"%s\"\n actionCode: %d\n message: \"%s\"\n stack: \"%s\"}",
id, actionCode, message, stack);
}
}