Move MarketPriceNotAvailableException into package bisq.core.offer.bisq_v1

This commit is contained in:
chimp1984 2021-10-19 21:16:31 +02:00
parent 19f813eea3
commit d98cb27805
No known key found for this signature in database
GPG key ID: 9801B4EC591F90E3
3 changed files with 3 additions and 1 deletions

View file

@ -24,6 +24,7 @@ import bisq.core.monetary.Price;
import bisq.core.monetary.Volume;
import bisq.core.offer.availability.OfferAvailabilityModel;
import bisq.core.offer.availability.OfferAvailabilityProtocol;
import bisq.core.offer.bisq_v1.MarketPriceNotAvailableException;
import bisq.core.offer.bisq_v1.OfferPayload;
import bisq.core.payment.payload.PaymentMethod;
import bisq.core.provider.price.MarketPrice;

View file

@ -27,6 +27,7 @@ import bisq.core.filter.FilterManager;
import bisq.core.locale.Res;
import bisq.core.offer.availability.DisputeAgentSelection;
import bisq.core.offer.bisq_v1.CreateOfferService;
import bisq.core.offer.bisq_v1.MarketPriceNotAvailableException;
import bisq.core.offer.bisq_v1.OfferPayload;
import bisq.core.offer.messages.OfferAvailabilityRequest;
import bisq.core.offer.messages.OfferAvailabilityResponse;

View file

@ -15,7 +15,7 @@
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/
package bisq.core.offer;
package bisq.core.offer.bisq_v1;
public class MarketPriceNotAvailableException extends Exception {
public MarketPriceNotAvailableException(@SuppressWarnings("SameParameterValue") String message) {