133cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu/*
233cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * Copyright (C) 2006 The Android Open Source Project
333cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu *
433cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * Licensed under the Apache License, Version 2.0 (the "License");
533cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * you may not use this file except in compliance with the License.
633cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * You may obtain a copy of the License at
733cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu *
833cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu *      http://www.apache.org/licenses/LICENSE-2.0
933cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu *
1033cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * Unless required by applicable law or agreed to in writing, software
1133cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * distributed under the License is distributed on an "AS IS" BASIS,
1233cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1333cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * See the License for the specific language governing permissions and
1433cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu * limitations under the License.
1533cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu */
1633cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu
1733cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liupackage com.android.internal.telephony;
1833cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu
1933cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liupublic class LastCallFailCause {
2033cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu  public int causeCode;
2133cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu  public String vendorCause;
2233cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu
2333cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu    @Override
2433cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu    public String toString() {
2533cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu        return super.toString()
2633cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu            + " causeCode: " + causeCode
2733cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu            + " vendorCause: " + vendorCause;
2833cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu    }
2933cfb500a7cf192adfc5ca06792fe3847073b6c1Chao Liu}
30