Поправил Throwable
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2023-03-22 23:02:48 +03:00
parent 12d224a218
commit ab227779e1
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6
2 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,6 @@ public interface ErrorHandler {
* @param message Сообщение, после которого возникло исключение. * @param message Сообщение, после которого возникло исключение.
* @param e Объект исключения. * @param e Объект исключения.
*/ */
void handle(Message message, Exception e); void handle(Message message, Throwable e);
} }

View File

@ -1,7 +1,7 @@
package dev.struchkov.godfather.main.domain.content; package dev.struchkov.godfather.main.domain.content;
public abstract class Attachment { public interface Attachment {
public abstract String getType(); String getType();
} }