Skip to content

Commit

Permalink
Added license information plus class headers
Browse files Browse the repository at this point in the history
  • Loading branch information
baubakg committed Oct 18, 2023
1 parent 7cdf730 commit 2b43050
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
/*
* Copyright 2022 Adobe
* All Rights Reserved.
*
* NOTICE: Adobe permits you to use, modify, and distribute this file in
* accordance with the terms of the Adobe license agreement accompanying
* it.
*/
package com.adobe.campaign.tests.bridge.service.exceptions;

/**
* This exception there only to reproduce internal errors in the bridgeService. This exception should NOT happen in
* production.
*/
public class IBSTestException extends RuntimeException {
public IBSTestException(String just_for_testing) {
super(just_for_testing);
Expand Down

0 comments on commit 2b43050

Please sign in to comment.