1 /* 2 * Copyright (C) 2017 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 /* 17 * Copyright (c) 2017, The Linux Foundation. 18 */ 19 20 /* 21 * Copyright 2012 Giesecke & Devrient GmbH. 22 * 23 * Licensed under the Apache License, Version 2.0 (the "License"); 24 * you may not use this file except in compliance with the License. 25 * You may obtain a copy of the License at 26 * 27 * http://www.apache.org/licenses/LICENSE-2.0 28 * 29 * Unless required by applicable law or agreed to in writing, software 30 * distributed under the License is distributed on an "AS IS" BASIS, 31 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 32 * See the License for the specific language governing permissions and 33 * limitations under the License. 34 */ 35 package com.android.se.security.gpac; 36 37 /** Exceptions when there is an error parcing the Data Objects for Access Rules */ 38 public class ParserException extends Exception { 39 40 /** */ 41 private static final long serialVersionUID = -3917637590082486538L; 42 ParserException()43 public ParserException() { 44 super(); 45 // TODO Auto-generated constructor stub 46 } 47 ParserException(String arg0, Throwable arg1)48 public ParserException(String arg0, Throwable arg1) { 49 super(arg0, arg1); 50 // TODO Auto-generated constructor stub 51 } 52 ParserException(String arg0)53 public ParserException(String arg0) { 54 super(arg0); 55 // TODO Auto-generated constructor stub 56 } 57 ParserException(Throwable arg0)58 public ParserException(Throwable arg0) { 59 super(arg0); 60 // TODO Auto-generated constructor stub 61 } 62 } 63