
com.github.phone.utils.PhoneNumberParsingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phone-utils Show documentation
Show all versions of phone-utils Show documentation
A convenient phone library helping to work with phone numbers.
The newest version!
package com.github.phone.utils;
public class PhoneNumberParsingException extends RuntimeException {
private static final long serialVersionUID = 1L;
public PhoneNumberParsingException(Throwable cause) {
super(cause.getCause());
}
public PhoneNumberParsingException(String message) {
super(message);
}
public PhoneNumberParsingException(String message, Throwable cause) {
super(message, cause instanceof PhoneNumberParsingException ? cause.getCause() : cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy