TelegramBots/src/main/java/org/telegram/telegrambots/exceptions/TelegramApiValidationException.java
Rubenlagus 5903cd6338 1. File downloads
2. Update with latest api changes
3. Improve exceptions
4. Added validation in api methods
5. Moved to maven central
2016-09-24 22:37:25 +02:00

54 lines
1.7 KiB
Java

/*
* This file is part of TelegramBots.
*
* Foobar 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.
*
* Foobar 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
* along with Foobar. If not, see <http://www.gnu.org/licenses/>.
*/
package org.telegram.telegrambots.exceptions;
import org.telegram.telegrambots.api.interfaces.IBotApiObject;
import org.telegram.telegrambots.api.methods.BotApiMethod;
/**
* @author Ruben Bermudez
* @version 1.0
* @brief Exception from method validations
* @date 16 of September of 2016
*/
public class TelegramApiValidationException extends TelegramApiException {
private BotApiMethod method;
private IBotApiObject object;
public TelegramApiValidationException(String message, BotApiMethod method) {
super(message);
this.method = method;
}
public TelegramApiValidationException(String message, IBotApiObject object) {
super(message);
this.object = object;
}
@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();
}
}