diff --git a/java/compiler/forms-compiler/src/com/intellij/uiDesigner/compiler/UnexpectedFormElementException.java b/java/compiler/forms-compiler/src/com/intellij/uiDesigner/compiler/UnexpectedFormElementException.java new file mode 100644 index 000000000000..e557dd26fb31 --- /dev/null +++ b/java/compiler/forms-compiler/src/com/intellij/uiDesigner/compiler/UnexpectedFormElementException.java @@ -0,0 +1,27 @@ +/* + * Copyright 2000-2016 JetBrains s.r.o. + * + * 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 com.intellij.uiDesigner.compiler; + +/** + * @author yole + */ +public class UnexpectedFormElementException extends RuntimeException { + + public UnexpectedFormElementException(String message) { + super(message); + } +} diff --git a/platform/vcs-api/src/com/intellij/openapi/vcs/changes/IgnoreSettingsType.java b/platform/vcs-api/src/com/intellij/openapi/vcs/changes/IgnoreSettingsType.java new file mode 100644 index 000000000000..e89a14371628 --- /dev/null +++ b/platform/vcs-api/src/com/intellij/openapi/vcs/changes/IgnoreSettingsType.java @@ -0,0 +1,22 @@ +/* + * Copyright 2000-2009 JetBrains s.r.o. + * + * 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 com.intellij.openapi.vcs.changes; + +public enum IgnoreSettingsType { + UNDER_DIR, + FILE, + MASK +}