Skip to content
This repository has been archived by the owner on Dec 20, 2022. It is now read-only.

Commit

Permalink
Merge pull request #105 from pfistererm/mp_line_ending_conversion
Browse files Browse the repository at this point in the history
Fixed line endings
  • Loading branch information
davu-all committed Feb 20, 2020
2 parents 5a3c03d + ca60fc0 commit 7281b50
Show file tree
Hide file tree
Showing 34 changed files with 2,142 additions and 2,142 deletions.
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
/**
* Copyright 2019 Association for the promotion of open-source insurance software and for the establishment of open interface standards in the insurance industry (Verein zur Förderung quelloffener Versicherungssoftware und Etablierung offener Schnittstellenstandards in der Versicherungsbranche)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.aposin.licensescout.execution;

/**
* Base class for checked exception during the main execution of the LicenseScout.
*
* @see Executor
*/
public class BaseLicenseScoutExecutionException extends Exception {

/**
*
*/
private static final long serialVersionUID = 7177068769438055391L;

/**
* Constructor.
* @param message
*/
public BaseLicenseScoutExecutionException(String message) {
super(message);
}

/**
* Constructor.
* @param cause
*/
public BaseLicenseScoutExecutionException(Throwable cause) {
super(cause);
}

/**
* Constructor.
* @param message
* @param cause
*/
public BaseLicenseScoutExecutionException(String message, Throwable cause) {
super(message, cause);
}
}
/**
* Copyright 2019 Association for the promotion of open-source insurance software and for the establishment of open interface standards in the insurance industry (Verein zur Förderung quelloffener Versicherungssoftware und Etablierung offener Schnittstellenstandards in der Versicherungsbranche)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.aposin.licensescout.execution;

/**
* Base class for checked exception during the main execution of the LicenseScout.
*
* @see Executor
*/
public class BaseLicenseScoutExecutionException extends Exception {

/**
*
*/
private static final long serialVersionUID = 7177068769438055391L;

/**
* Constructor.
* @param message
*/
public BaseLicenseScoutExecutionException(String message) {
super(message);
}

/**
* Constructor.
* @param cause
*/
public BaseLicenseScoutExecutionException(Throwable cause) {
super(cause);
}

/**
* Constructor.
* @param message
* @param cause
*/
public BaseLicenseScoutExecutionException(String message, Throwable cause) {
super(message, cause);
}
}
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
/**
* Copyright 2019 Association for the promotion of open-source insurance software and for the establishment of open interface standards in the insurance industry (Verein zur Förderung quelloffener Versicherungssoftware und Etablierung offener Schnittstellenstandards in der Versicherungsbranche)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.aposin.licensescout.execution;

/**
* Checked exception during the main execution of the LicenseScout.
*
* @see Executor
*/
public class LicenseScoutExecutionException extends BaseLicenseScoutExecutionException {

/**
*
*/
private static final long serialVersionUID = 7962771718095777982L;

/**
* Constructor.
* @param message
*/
public LicenseScoutExecutionException(String message) {
super(message);
}

/**
* Constructor.
* @param cause
*/
public LicenseScoutExecutionException(Throwable cause) {
super(cause);
}

/**
* Constructor.
* @param message
* @param cause
*/
public LicenseScoutExecutionException(String message, Throwable cause) {
super(message, cause);
}
}
/**
* Copyright 2019 Association for the promotion of open-source insurance software and for the establishment of open interface standards in the insurance industry (Verein zur Förderung quelloffener Versicherungssoftware und Etablierung offener Schnittstellenstandards in der Versicherungsbranche)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.aposin.licensescout.execution;

/**
* Checked exception during the main execution of the LicenseScout.
*
* @see Executor
*/
public class LicenseScoutExecutionException extends BaseLicenseScoutExecutionException {

/**
*
*/
private static final long serialVersionUID = 7962771718095777982L;

/**
* Constructor.
* @param message
*/
public LicenseScoutExecutionException(String message) {
super(message);
}

/**
* Constructor.
* @param cause
*/
public LicenseScoutExecutionException(Throwable cause) {
super(cause);
}

/**
* Constructor.
* @param message
* @param cause
*/
public LicenseScoutExecutionException(String message, Throwable cause) {
super(message, cause);
}
}
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
/**
* Copyright 2019 Association for the promotion of open-source insurance software and for the establishment of open interface standards in the insurance industry (Verein zur Förderung quelloffener Versicherungssoftware und Etablierung offener Schnittstellenstandards in der Versicherungsbranche)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.aposin.licensescout.execution;

/**
* Checked exception for fail-on-error condition.
*
* @see Executor
*/
public class LicenseScoutFailOnErrorException extends BaseLicenseScoutExecutionException {

/**
*
*/
private static final long serialVersionUID = 1043274178375864755L;

/**
* Constructor.
* @param message
*/
public LicenseScoutFailOnErrorException(final String message) {
super(message);
}
}
/**
* Copyright 2019 Association for the promotion of open-source insurance software and for the establishment of open interface standards in the insurance industry (Verein zur Förderung quelloffener Versicherungssoftware und Etablierung offener Schnittstellenstandards in der Versicherungsbranche)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.aposin.licensescout.execution;

/**
* Checked exception for fail-on-error condition.
*
* @see Executor
*/
public class LicenseScoutFailOnErrorException extends BaseLicenseScoutExecutionException {

/**
*
*/
private static final long serialVersionUID = 1043274178375864755L;

/**
* Constructor.
* @param message
*/
public LicenseScoutFailOnErrorException(final String message) {
super(message);
}
}
Loading

0 comments on commit 7281b50

Please sign in to comment.