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

Fixed line endings #105

Merged
merged 1 commit into from
Feb 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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