12 lines
235 B
Java
12 lines
235 B
Java
|
package com.scb.phone.domain;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class ScbException extends RuntimeException {
|
||
|
public ScbException() {
|
||
|
}
|
||
|
|
||
|
public ScbException(String str, Throwable th) {
|
||
|
super(str, th);
|
||
|
}
|
||
|
}
|