Back to project page BackbeamAndroid.
The source code is released under:
Copyright (c) 2012 Level Apps S.L. <http://backbeam.io> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software...
If you think the Android project BackbeamAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.backbeam; /* w ww.j av a2 s . co m*/ public class BackbeamException extends RuntimeException { private static final long serialVersionUID = 4888148994677731920L; private String status; private String errorMessage; public BackbeamException(Throwable throwable) { super(throwable); } public BackbeamException(String status) { super(status); this.status = status; } public BackbeamException(String status, String errorMessage) { super(status+": "+errorMessage); this.status = status; this.errorMessage = errorMessage; } public String getStatus() { return status; } public String getErrorMessage() { return errorMessage; } }