/**
* Copyright © 2002 Instituto Superior Técnico
*
* This file is part of FenixEdu Academic.
*
* FenixEdu Academic is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FenixEdu Academic 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with FenixEdu Academic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.fenixedu.academic.domain.exceptions;
import java.util.Collection;
import java.util.Optional;
import java.util.stream.Collectors;
import javax.ws.rs.core.Response.Status;
import org.fenixedu.academic.util.Bundle;
public class DomainException extends org.fenixedu.bennu.core.domain.exceptions.DomainException {
private static final String DEFAULT_BUNDLE = Bundle.APPLICATION;
protected DomainException() {
this(null, (String[]) null);
}
public DomainException(final String key, final String... args) {
super(DEFAULT_BUNDLE, key, args);
}
public DomainException(Optional<String> bundle, final String key, final String... args) {
super(bundle == null ? DEFAULT_BUNDLE : bundle.orElse(DEFAULT_BUNDLE), key, args);
}
public DomainException(Status status, String key, String... args) {
super(status, DEFAULT_BUNDLE, key, args);
}
public DomainException(final String key, final Throwable cause, final String... args) {
super(cause, DEFAULT_BUNDLE, key, args);
}
public static void throwWhenDeleteBlocked(Collection<String> blockers) {
if (!blockers.isEmpty()) {
throw new DomainException("key.return.argument", blockers.stream().collect(Collectors.joining(", ")));
}
}
}