Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/org/adblockplus/android/api/AdblockPlusException.java

Issue 6606493159784448: New JNI bindings (Closed)
Patch Set: Added missing copyright header Created March 14, 2014, 11:37 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/org/adblockplus/android/JSEngine.java ('k') | src/org/adblockplus/android/api/AppInfo.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * This file is part of Adblock Plus <http://adblockplus.org/>,
3 * Copyright (C) 2006-2014 Eyeo GmbH
4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation.
8 *
9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */
17 package org.adblockplus.android.api;
18
19 public class AdblockPlusException extends RuntimeException
20 {
21 private static final long serialVersionUID = -8127654134450836743L;
22
23 public AdblockPlusException(final String message)
24 {
25 super(message);
26 }
27
28 public AdblockPlusException(final String message, final Throwable throwable)
29 {
30 super(message, throwable);
31 }
32
33 public AdblockPlusException(final Throwable throwable)
34 {
35 super(throwable);
36 }
37 }
OLDNEW
« no previous file with comments | « src/org/adblockplus/android/JSEngine.java ('k') | src/org/adblockplus/android/api/AppInfo.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld