[OPENMEETINGS-1714] more issues are fixed
Project: http://git-wip-us.apache.org/repos/asf/openmeetings/repo Commit: http://git-wip-us.apache.org/repos/asf/openmeetings/commit/e5b3f259 Tree: http://git-wip-us.apache.org/repos/asf/openmeetings/tree/e5b3f259 Diff: http://git-wip-us.apache.org/repos/asf/openmeetings/diff/e5b3f259 Branch: refs/heads/master Commit: e5b3f25932ed9da5abdc3ea23f14108be0c8b7d2 Parents: bb7015a Author: Maxim Solodovnik <[email protected]> Authored: Sat Sep 30 19:31:57 2017 +0700 Committer: Maxim Solodovnik <[email protected]> Committed: Sat Sep 30 19:31:57 2017 +0700 ---------------------------------------------------------------------- .../core/converter/ConversionException.java | 27 ++++++++++++++++++++ .../openmeetings/backup/BackupException.java | 27 ++++++++++++++++++++ .../installation/InstallException.java | 27 ++++++++++++++++++++ 3 files changed, 81 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/openmeetings/blob/e5b3f259/openmeetings-core/src/main/java/org/apache/openmeetings/core/converter/ConversionException.java ---------------------------------------------------------------------- diff --git a/openmeetings-core/src/main/java/org/apache/openmeetings/core/converter/ConversionException.java b/openmeetings-core/src/main/java/org/apache/openmeetings/core/converter/ConversionException.java new file mode 100644 index 0000000..b3d9e1f --- /dev/null +++ b/openmeetings-core/src/main/java/org/apache/openmeetings/core/converter/ConversionException.java @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.openmeetings.core.converter; + +public class ConversionException extends Exception { + private static final long serialVersionUID = 1L; + + public ConversionException(String msg) { + super(msg); + } +} http://git-wip-us.apache.org/repos/asf/openmeetings/blob/e5b3f259/openmeetings-install/src/main/java/org/apache/openmeetings/backup/BackupException.java ---------------------------------------------------------------------- diff --git a/openmeetings-install/src/main/java/org/apache/openmeetings/backup/BackupException.java b/openmeetings-install/src/main/java/org/apache/openmeetings/backup/BackupException.java new file mode 100644 index 0000000..b0f116e --- /dev/null +++ b/openmeetings-install/src/main/java/org/apache/openmeetings/backup/BackupException.java @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.openmeetings.backup; + +public class BackupException extends Exception { + private static final long serialVersionUID = 1L; + + public BackupException(String msg) { + super(msg); + } +} http://git-wip-us.apache.org/repos/asf/openmeetings/blob/e5b3f259/openmeetings-install/src/main/java/org/apache/openmeetings/installation/InstallException.java ---------------------------------------------------------------------- diff --git a/openmeetings-install/src/main/java/org/apache/openmeetings/installation/InstallException.java b/openmeetings-install/src/main/java/org/apache/openmeetings/installation/InstallException.java new file mode 100644 index 0000000..1b6f386 --- /dev/null +++ b/openmeetings-install/src/main/java/org/apache/openmeetings/installation/InstallException.java @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.openmeetings.installation; + +public class InstallException extends Exception { + private static final long serialVersionUID = 1L; + + public InstallException(String msg) { + super(msg); + } +}
