1171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann/*
2171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * Copyright (C) 2017 The Android Open Source Project
3171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann *
4171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * Licensed under the Apache License, Version 2.0 (the "License");
5171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * you may not use this file except in compliance with the License.
6171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * You may obtain a copy of the License at
7171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann *
8171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann *      http://www.apache.org/licenses/LICENSE-2.0
9171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann *
10171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * Unless required by applicable law or agreed to in writing, software
11171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * distributed under the License is distributed on an "AS IS" BASIS,
12171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * See the License for the specific language governing permissions and
14171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * limitations under the License.
15171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann */
16171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann
17171f097997993b84053f643dc275ce66364315caPhilip P. Moltmannpackage com.android.dx.mockito.inline;
18171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann
19171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann/**
20171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * Exception thrown if a class cannot be transformed by
21171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann * {@link ClassTransformer#transform(Class, byte[])}
22171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann */
23171f097997993b84053f643dc275ce66364315caPhilip P. Moltmannclass IllegalClassFormatException extends Exception {
24171f097997993b84053f643dc275ce66364315caPhilip P. Moltmann}
25