TDLightTelegramBots/telegrambots-meta/src/main/java/org/telegram/telegrambots/meta/exceptions/TelegramApiValidationException.java

61 lines
1.8 KiB
Java
Raw Normal View History

/*
* This file is part of TelegramBots.
*
2016-09-28 00:31:34 +02:00
* TelegramBots is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
2016-09-28 00:31:34 +02:00
* TelegramBots is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2016-09-28 00:31:34 +02:00
* along with TelegramBots. If not, see <http://www.gnu.org/licenses/>.
*/
2018-07-08 01:41:21 +02:00
package org.telegram.telegrambots.meta.exceptions;
2020-01-24 00:23:29 +01:00
import org.telegram.telegrambots.meta.api.interfaces.BotApiObject;
2018-07-08 01:41:21 +02:00
import org.telegram.telegrambots.meta.api.methods.PartialBotApiMethod;
/**
* @author Ruben Bermudez
* @version 1.0
2020-01-24 00:23:29 +01:00
* Exception from method validations
*/
public class TelegramApiValidationException extends TelegramApiException {
private PartialBotApiMethod method;
2020-01-24 00:23:29 +01:00
private BotApiObject object;
public TelegramApiValidationException(String message, PartialBotApiMethod method) {
super(message);
this.method = method;
}
2020-01-24 00:23:29 +01:00
public TelegramApiValidationException(String message, BotApiObject object) {
super(message);
this.object = object;
}
2020-01-24 00:23:29 +01:00
public BotApiObject getObject() {
return object;
}
2020-01-24 00:23:29 +01:00
public PartialBotApiMethod getMethod() {
return method;
}
@Override
public String toString() {
if (method != null) {
return super.toString() + " in method: " + method.toString();
}
if (object != null) {
return super.toString() + " in object: " + object.toString();
}
return super.toString();
}
}