Restored "IgnoreSettingsType", "UnexpectedFormElementException"

Deleted by mistake in d1e96fae4f
This commit is contained in:
Konstantin Kolosovsky
2016-09-20 15:25:21 +03:00
parent 34987f9b0f
commit 79b1c6ff93
2 changed files with 49 additions and 0 deletions
@@ -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);
}
}
@@ -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
}